diff options
author | 2020-07-25 00:20:13 -0400 | |
---|---|---|
committer | 2020-07-25 00:20:13 -0400 | |
commit | 44beff91b257a9d7874e20790d50a8568990d9e6 (patch) | |
tree | 23167dab39f2475c9d65a73cffa1ccb59febcb39 /modules/textadept/macros.lua | |
parent | 8cfb09b23bf718af6a705291b74abb4e2c62b7e3 (diff) | |
download | textadept-44beff91b257a9d7874e20790d50a8568990d9e6.tar.gz textadept-44beff91b257a9d7874e20790d50a8568990d9e6.zip |
Moved incremental find into Find & Replace Pane.
Added new `events.FIND_TEXT_CHANGED` to help facilitate this.
"Whole word" and "Regex" are now supported in addition to "Match case".
Also updated tests.
Diffstat (limited to 'modules/textadept/macros.lua')
-rw-r--r-- | modules/textadept/macros.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/macros.lua b/modules/textadept/macros.lua index a3636e6f..ff802475 100644 --- a/modules/textadept/macros.lua +++ b/modules/textadept/macros.lua @@ -18,7 +18,7 @@ events.connect(events.INITIALIZED, function() local m_tools = textadept.menu.menubar[_L['Tools']] ignore = { textadept.menu.menubar[_L['Search']][_L['Find']][2], - ui.find.find_incremental, + textadept.menu.menubar[_L['Search']][_L['Find Incremental']][2], m_tools[_L['Select Command']][2], m_tools[_L['Macros']][_L['Start/Stop Recording']][2] } |