diff options
author | 2008-06-17 16:43:09 -0400 | |
---|---|---|
committer | 2008-06-17 16:43:09 -0400 | |
commit | 102c01ba2db51190c7c79592a6ea2fdb29d4d4fa (patch) | |
tree | 781576920293b05c7585e410f8dc9d3f2e48a44f /core/ext/key_commands.lua | |
parent | e47fe640c0cd6826fa2b46d3b3fad7268766a093 (diff) | |
download | textadept-102c01ba2db51190c7c79592a6ea2fdb29d4d4fa.tar.gz textadept-102c01ba2db51190c7c79592a6ea2fdb29d4d4fa.zip |
Added Tab-completion to Lua Command Entry.
Diffstat (limited to 'core/ext/key_commands.lua')
-rw-r--r-- | core/ext/key_commands.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ext/key_commands.lua b/core/ext/key_commands.lua index ca22ff37..83d88f47 100644 --- a/core/ext/key_commands.lua +++ b/core/ext/key_commands.lua @@ -207,7 +207,7 @@ keys.ct.v.t = { toggle_setting, 'use_tabs' } keys.ct.v.w = { toggle_setting, 'view_ws' } -- Miscellaneous commands. -keys.cc = { t.focus_command } +keys.cc = { t.command_entry.focus } local m_events = t.events keys.cab = { m_events.handle, 'call_tip_click', 1 } keys.caf = { m_events.handle, 'call_tip_click', 2 } |