branch: elpa/lua-mode
commit e3a4390179f24e971ca93db56b3652ba33da46f4
Author: immerrr <[email protected]>
Commit: immerrr <[email protected]>
lua-mark-all-multiline-literals: add default keybinding "lua-prefix C-;"
---
lua-mode.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lua-mode.el b/lua-mode.el
index ff335fc..96c73e9 100644
--- a/lua-mode.el
+++ b/lua-mode.el
@@ -164,7 +164,8 @@ Should be a list of strings."
(mapc (lambda (key_defn)
(define-key result-map (read-kbd-macro (car key_defn)) (cdr
key_defn)))
'(("C-l" . lua-send-buffer)
- ("C-f" . lua-search-documentation)))
+ ("C-f" . lua-search-documentation)
+ ("C-;" . lua-mark-all-multiline-literals)))
result-map))
"Keymap that is used to define keys accessible by `lua-prefix-key'.