diff options
author | 2020-02-21 16:09:53 -0500 | |
---|---|---|
committer | 2020-02-21 16:09:53 -0500 | |
commit | 5b2511834db13d21724314c20be06aa71afdee2b (patch) | |
tree | 8235872dd868dd2bf87592a0b2ac0a11bf945f2c /modules/textadept/macros.lua | |
parent | b4a67ffb3aedafcd778ad853246f8119f7e5e9e6 (diff) | |
download | textadept-5b2511834db13d21724314c20be06aa71afdee2b.tar.gz textadept-5b2511834db13d21724314c20be06aa71afdee2b.zip |
Removed '_' mnemonics from locale keys.
Kept backward-compatibility for now.
Diffstat (limited to 'modules/textadept/macros.lua')
-rw-r--r-- | modules/textadept/macros.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/textadept/macros.lua b/modules/textadept/macros.lua index b10d1994..123c0392 100644 --- a/modules/textadept/macros.lua +++ b/modules/textadept/macros.lua @@ -15,12 +15,12 @@ local recording, macro -- ultimately executed will be recorded in some form. local ignore events.connect(events.INITIALIZED, function() - local m_tools = textadept.menu.menubar[_L['_Tools']] + local m_tools = textadept.menu.menubar[_L['Tools']] ignore = { - textadept.menu.menubar[_L['_Search']][_L['_Find']][2], + textadept.menu.menubar[_L['Search']][_L['Find']][2], ui.find.find_incremental, - m_tools[_L['Select Co_mmand']][2], - m_tools[_L['_Macros']][_L['Start/Stop _Recording']][2] + m_tools[_L['Select Command']][2], + m_tools[_L['Macros']][_L['Start/Stop Recording']][2] } end) |