aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/keys.lua
diff options
context:
space:
mode:
Diffstat (limited to 'modules/textadept/keys.lua')
-rw-r--r--modules/textadept/keys.lua8
1 files changed, 2 insertions, 6 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua
index 90cb2000..e105d57b 100644
--- a/modules/textadept/keys.lua
+++ b/modules/textadept/keys.lua
@@ -349,7 +349,8 @@ local bindings = {
-- Find Prev is ap when find pane is focused in GUI.
-- Replace is ar when find pane is focused in GUI.
-- Replace All is aa when find pane is focused in GUI.
- [ui.find.find_incremental] = {'ctrl+alt+f', 'ctrl+cmd+f', 'ctrl+meta+f'},
+ [m_search[_L['Find Incremental']][2]] =
+ {'ctrl+alt+f', 'ctrl+cmd+f', 'ctrl+meta+f'},
[m_search[_L['Find in Files']][2]] = {'ctrl+F', 'cmd+F', nil},
-- Find in Files is ai when find pane is focused in GUI.
[m_search[_L['Goto Next File Found']][2]] = {'ctrl+alt+g', 'ctrl+cmd+g', nil},
@@ -529,9 +530,4 @@ end
-- not propagate it.
if OSX then keys.fn = function() return true end end
--- Reverse incremental find.
-ui.find.find_incremental_keys['ctrl+r'] = function()
- ui.find.find_incremental(ui.command_entry:get_text(), false, true)
-end
-
return M