diff options
author | 2009-09-13 21:07:12 -0400 | |
---|---|---|
committer | 2009-09-13 21:07:12 -0400 | |
commit | 411bf489ab8044e772bb796be09e37defe8ed400 (patch) | |
tree | 45e73955092c3482540f7c0fe8d22fb1ef76dcff /core/ext | |
parent | 95773a42816d4ca7f749ad59c54e80c9f706e6b3 (diff) | |
download | textadept-411bf489ab8044e772bb796be09e37defe8ed400.tar.gz textadept-411bf489ab8044e772bb796be09e37defe8ed400.zip |
Added standard Windows key command for Find Next; core/ext/key_commands.lua
Diffstat (limited to 'core/ext')
-rw-r--r-- | core/ext/key_commands.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/ext/key_commands.lua b/core/ext/key_commands.lua index d598d166..d8e40bde 100644 --- a/core/ext/key_commands.lua +++ b/core/ext/key_commands.lua @@ -187,6 +187,7 @@ if not MAC then -- Search keys.cf = { t.find.focus } -- find/replace + keys['f3'] = { t.find.find_next } -- Find Next is an when find pane is focused. -- Find Prev is ap when find pane is focused. -- Replace is ar when find pane is focused. @@ -371,9 +372,9 @@ else -- Search keys.af = { t.find.focus } -- find/replace - keys.ag = { t.find.call_find_next } - keys.sag = { t.find.call_find_prev } - keys.ar = { t.find.call_replace } + keys.ag = { t.find.find_next } + keys.sag = { t.find.find_prev } + keys.ar = { t.find.replace } keys.ai = { t.find.find_incremental } keys.saf = { function() |