diff options
Diffstat (limited to 'modules/lua')
-rw-r--r-- | modules/lua/init.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/modules/lua/init.lua b/modules/lua/init.lua index b48d0abb..49ccda17 100644 --- a/modules/lua/init.lua +++ b/modules/lua/init.lua @@ -9,8 +9,6 @@ local M = {} -- -- ## Key Bindings -- --- + `Ctrl+L, M` (`⌘L, M` on Mac OSX | `M-L, M` in curses) --- Open this module for editing. -- + `Shift+Enter` (`⇧↩` | `S-Enter`) -- Autocomplete an `if`, `while`, `for`, etc. control structure with the `end` -- keyword. @@ -138,9 +136,6 @@ end) -- @class table -- @name _G.keys.lua keys.lua = { - [keys.LANGUAGE_MODULE_PREFIX] = { - m = {io.open_file, _HOME..'/modules/lua/init.lua'}, - }, ['s\n'] = M.try_to_autocomplete_end, } |