diff options
author | 2014-06-30 13:06:25 -0400 | |
---|---|---|
committer | 2014-06-30 13:06:25 -0400 | |
commit | 03b0b8932ea1c41854a487f9fa6555def9b59462 (patch) | |
tree | 491743468203ee0b49729d323a1f224aaf4ef669 /modules/textadept/menu.lua | |
parent | b8a5a15f6171cbedc9007e5b05757aa4b72ff742 (diff) | |
download | textadept-03b0b8932ea1c41854a487f9fa6555def9b59462.tar.gz textadept-03b0b8932ea1c41854a487f9fa6555def9b59462.zip |
Condensed manual and API documentation into single files.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r-- | modules/textadept/menu.lua | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index a3da4092..2c35dc4d 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -10,7 +10,7 @@ local M = {} -- keys with string text. Use the '#' operator (instead of `ipairs()`) for -- iteration. -- If applicable, load this module last in your *~/.textadept/init.lua*, after --- `textadept.keys` since it looks up defined key commands to show them in +-- [`textadept.keys`]() since it looks up defined key commands to show them in -- menus. module('textadept.menu')]] @@ -194,9 +194,8 @@ local menubar = { {_L['_Reset Zoom'], utils.reset_zoom}, }, { title = _L['_Help'], - {_L['Show _Manual'], - {utils.open_webpage, _HOME..'/doc/manual/01_Introduction.html'}}, - {_L['Show _LuaDoc'], {utils.open_webpage, _HOME..'/doc/api/index.html'}}, + {_L['Show _Manual'], {utils.open_webpage, _HOME..'/doc/manual.html'}}, + {_L['Show _LuaDoc'], {utils.open_webpage, _HOME..'/doc/api.html'}}, SEPARATOR, {_L['_About'], {ui.dialogs.msgbox, {title = 'Textadept', text = _RELEASE, |