aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/macros.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2020-02-21 16:09:53 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2020-02-21 16:09:53 -0500
commit5b2511834db13d21724314c20be06aa71afdee2b (patch)
tree8235872dd868dd2bf87592a0b2ac0a11bf945f2c /modules/textadept/macros.lua
parentb4a67ffb3aedafcd778ad853246f8119f7e5e9e6 (diff)
downloadtextadept-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.lua8
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)