aboutsummaryrefslogtreecommitdiff
path: root/doc
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 /doc
parentb4a67ffb3aedafcd778ad853246f8119f7e5e9e6 (diff)
downloadtextadept-5b2511834db13d21724314c20be06aa71afdee2b.tar.gz
textadept-5b2511834db13d21724314c20be06aa71afdee2b.zip
Removed '_' mnemonics from locale keys.
Kept backward-compatibility for now.
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.md2
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]