diff options
Diffstat (limited to 'core/ext/pm/macro_browser.lua')
-rw-r--r-- | core/ext/pm/macro_browser.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ext/pm/macro_browser.lua b/core/ext/pm/macro_browser.lua index 32bd86ff..d7cde6bd 100644 --- a/core/ext/pm/macro_browser.lua +++ b/core/ext/pm/macro_browser.lua @@ -8,7 +8,7 @@ local locale = _G.locale -- It is enabled with the prefix 'macros' in the project manager entry field. module('textadept.pm.browsers.macro', package.seeall) -textadept.pm.add_browser('macros') +if not RESETTING then textadept.pm.add_browser('macros') end function matches(entry_text) return entry_text:sub(1, 7) == 'macros' |