diff options
author | 2010-01-26 21:40:56 -0500 | |
---|---|---|
committer | 2010-01-26 21:40:56 -0500 | |
commit | c44a5b9e336368b25c0cf2d42d2a6bb03cf1e842 (patch) | |
tree | 7c7d7957bab684fcd9672defc3a4b34ddfffa874 | |
parent | cfc99e8034d8e8769448cc680116f8e30f931ade (diff) | |
download | textadept-c44a5b9e336368b25c0cf2d42d2a6bb03cf1e842.tar.gz textadept-c44a5b9e336368b25c0cf2d42d2a6bb03cf1e842.zip |
Fixed Windows key command for word autocomplete; core/ext/key_commands.lua
-rw-r--r-- | core/ext/key_commands.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/ext/key_commands.lua b/core/ext/key_commands.lua index 9d8b0c1b..05a95805 100644 --- a/core/ext/key_commands.lua +++ b/core/ext/key_commands.lua @@ -150,6 +150,7 @@ if not MAC then keys.ce = { m_editing.match_brace } keys.cse = { m_editing.match_brace, 'select' } keys['c\n'] = { m_editing.autocomplete_word, '%w_' } + keys['c\n\r'] = { m_editing.autocomplete_word, '%w_' } -- win32 keys.cq = { m_editing.block_comment } -- TODO: { m_editing.current_word, 'delete' } -- TODO: { m_editing.transpose_chars } |