From 5b2511834db13d21724314c20be06aa71afdee2b Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Fri, 21 Feb 2020 16:09:53 -0500 Subject: Removed '_' mnemonics from locale keys. Kept backward-compatibility for now. --- modules/textadept/macros.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/textadept/macros.lua') 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) -- cgit v1.2.3