diff options
author | 2015-03-10 15:43:52 -0400 | |
---|---|---|
committer | 2015-03-10 15:43:52 -0400 | |
commit | 31a221be73515d3f31e547d52774d66de166ae1d (patch) | |
tree | c913d9e3f77c86cb4a7cdf20aab2f027a4ef2c9d /modules/lua/init.lua | |
parent | f4f34823ee07fd680ee5032277f51d39cbf85b1a (diff) | |
download | textadept-31a221be73515d3f31e547d52774d66de166ae1d.tar.gz textadept-31a221be73515d3f31e547d52774d66de166ae1d.zip |
Removed `keys.LANGUAGE_MODULE_PREFIX` key binding.
Diffstat (limited to 'modules/lua/init.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, } |