aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2009-09-13 21:07:12 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2009-09-13 21:07:12 -0400
commit411bf489ab8044e772bb796be09e37defe8ed400 (patch)
tree45e73955092c3482540f7c0fe8d22fb1ef76dcff
parent95773a42816d4ca7f749ad59c54e80c9f706e6b3 (diff)
downloadtextadept-411bf489ab8044e772bb796be09e37defe8ed400.tar.gz
textadept-411bf489ab8044e772bb796be09e37defe8ed400.zip
Added standard Windows key command for Find Next; core/ext/key_commands.lua
-rw-r--r--core/ext/key_commands.lua7
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()