diff options
author | 2012-09-18 15:49:32 -0400 | |
---|---|---|
committer | 2012-09-18 15:49:32 -0400 | |
commit | 29a56dc530cebfaa0bdbfadd414588704e0fc374 (patch) | |
tree | 9184bae3259e72dd7c44d638ff158d7e5e39f278 /modules/textadept/command_entry.lua | |
parent | 1d6c1bfb4503da0d4596345d74af63a34a58410b (diff) | |
download | textadept-29a56dc530cebfaa0bdbfadd414588704e0fc374.tar.gz textadept-29a56dc530cebfaa0bdbfadd414588704e0fc374.zip |
Fixed incremental find in ncurses.
Diffstat (limited to 'modules/textadept/command_entry.lua')
-rw-r--r-- | modules/textadept/command_entry.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/textadept/command_entry.lua b/modules/textadept/command_entry.lua index 262444d6..c1673217 100644 --- a/modules/textadept/command_entry.lua +++ b/modules/textadept/command_entry.lua @@ -43,7 +43,6 @@ end) events.connect(events.COMMAND_ENTRY_KEYPRESS, function(code) if keys.KEYSYMS[code] == 'esc' then gui.command_entry.focus() -- toggle focus to hide - return true elseif not NCURSES and keys.KEYSYMS[code] == '\t' or code == 9 then local substring = gui.command_entry.entry_text:match('[%w_.:]+$') or '' local path, o, prefix = substring:match('^([%w_.:]-)([.:]?)([%w_]*)$') |