diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/ansi_c/init.lua | 5 | ||||
-rw-r--r-- | modules/lua/init.lua | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/modules/ansi_c/init.lua b/modules/ansi_c/init.lua index ef8f6e56..47d39022 100644 --- a/modules/ansi_c/init.lua +++ b/modules/ansi_c/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`) -- Add ';' to the end of the current line and insert a newline. module('_M.ansi_c')]] @@ -86,9 +84,6 @@ textadept.editing.api_files.ansi_c = { -- @class table -- @name _G.keys.ansi_c keys.ansi_c = { - [keys.LANGUAGE_MODULE_PREFIX] = { - m = {io.open_file, _HOME..'/modules/ansi_c/init.lua'}, - }, ['s\n'] = function() buffer:line_end() buffer:add_text(';') 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, } |