diff options
author | 2020-02-21 16:09:53 -0500 | |
---|---|---|
committer | 2020-02-21 16:09:53 -0500 | |
commit | 5b2511834db13d21724314c20be06aa71afdee2b (patch) | |
tree | 8235872dd868dd2bf87592a0b2ac0a11bf945f2c /doc/manual.md | |
parent | b4a67ffb3aedafcd778ad853246f8119f7e5e9e6 (diff) | |
download | textadept-5b2511834db13d21724314c20be06aa71afdee2b.tar.gz textadept-5b2511834db13d21724314c20be06aa71afdee2b.zip |
Removed '_' mnemonics from locale keys.
Kept backward-compatibility for now.
Diffstat (limited to 'doc/manual.md')
-rw-r--r-- | doc/manual.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.md b/doc/manual.md index 3b757b70..754c5a45 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -1213,7 +1213,7 @@ selected, its Lua function is executed. For example, in order to append a menu item to the "Tools" menu and to the right-click context menu, add the following to your *~/.textadept/init.lua*: - local tools = textadept.menu.menubar[_L['_Tools']] + local tools = textadept.menu.menubar[_L['Tools']] tools[#tools + 1] = {'Extra Tool', function() ... end} local context_menu = textadept.menu.context_menu context_menu[#context_menu + 1] = tools[#tools] |