diff options
author | 2012-03-22 09:06:19 -0400 | |
---|---|---|
committer | 2012-03-22 09:06:19 -0400 | |
commit | 1329e9cd55f2741d1d8924b416b1646c23e7dee0 (patch) | |
tree | cb33ae01af8de6ddf709a53a62b54f7923898464 /modules | |
parent | e30713efdf8ced78a3c9a055f094c0fd5284dee2 (diff) | |
download | textadept-1329e9cd55f2741d1d8924b416b1646c23e7dee0.tar.gz textadept-1329e9cd55f2741d1d8924b416b1646c23e7dee0.zip |
Updated paths to Manual and LuaDoc in menus and key commands.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/textadept/keys.lua | 4 | ||||
-rw-r--r-- | modules/textadept/menu.lua | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua index f2e8bf73..88878a88 100644 --- a/modules/textadept/keys.lua +++ b/modules/textadept/keys.lua @@ -291,8 +291,8 @@ keys[not OSX and 'c0' or 'm0'] = utils.reset_zoom keys[not OSX and 'cT' or 'mT'] = gui.select_theme -- Help. -keys.f1 = { utils.open_webpage, _HOME..'/doc/manual/1_Introduction.html' } -keys.sf1 = { utils.open_webpage, _HOME..'/doc/index.html' } +keys.f1 = { utils.open_webpage, _HOME..'/doc/01_Introduction.html' } +keys.sf1 = { utils.open_webpage, _HOME..'/doc/api/index.html' } -- TODO: { gui.dialog, 'ok-msgbox', '--title', 'Textadept' -- '--informative-text', _RELEASE, '--no-cancel' } diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index 29a1a85a..53c9d224 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -212,8 +212,8 @@ M.menubar = { }, { title = _L['Help'], { _L['Show Manual'], - { utils.open_webpage, _HOME..'/doc/manual/1_Introduction.html' } }, - { _L['Show LuaDoc'], { utils.open_webpage, _HOME..'/doc/index.html' } }, + { utils.open_webpage, _HOME..'/doc/01_Introduction.html' } }, + { _L['Show LuaDoc'], { utils.open_webpage, _HOME..'/doc/api/index.html' } }, SEPARATOR, { _L['gtk-about'], { gui.dialog, 'ok-msgbox', '--title', 'Textadept', '--informative-text', |