aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/menu.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2013-04-24 15:21:32 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2013-04-24 15:21:32 -0400
commitcb57c684e1fb68ac8b4fc9c26a33bce603265eba (patch)
tree9c1ff861557e4941d21fdf59a7d666b8888b7b91 /modules/textadept/menu.lua
parent49f5b5d500b19fe3ebeb14d1a4cdcda61f0eab59 (diff)
downloadtextadept-cb57c684e1fb68ac8b4fc9c26a33bce603265eba.tar.gz
textadept-cb57c684e1fb68ac8b4fc9c26a33bce603265eba.zip
Renamed `goto_file_in_list()` to `goto_file_found()` and revamped functionality.
Also changed experimental find incremental API.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r--modules/textadept/menu.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua
index a727b1e0..5dc77735 100644
--- a/modules/textadept/menu.lua
+++ b/modules/textadept/menu.lua
@@ -109,8 +109,8 @@ local menubar = {
{_L['Find _Incremental'], gui_find.find_incremental},
SEPARATOR,
{_L['Find in Fi_les'], utils.find_in_files},
- {_L['Goto Nex_t File Found'], {gui_find.goto_file_in_list, true}},
- {_L['Goto Previou_s File Found'], {gui_find.goto_file_in_list, false}},
+ {_L['Goto Nex_t File Found'], {gui_find.goto_file_found, false, true}},
+ {_L['Goto Previou_s File Found'], {gui_find.goto_file_found, false, false}},
SEPARATOR,
{_L['_Jump to'], m_editing.goto_line},
},