diff options
Diffstat (limited to 'modules/textadept')
-rw-r--r-- | modules/textadept/menu.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index e18d0d02..de3b40c9 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -45,8 +45,8 @@ M.menubar = { { _L['_Close'], buffer.close }, { _L['Close All'], io.close_all }, SEPARATOR, - { _L['Loa_d Session...'], m_textadept.session.prompt_load }, - { _L['Sav_e Session...'], m_textadept.session.prompt_save }, + { _L['Loa_d Session...'], m_textadept.session.load }, + { _L['Sav_e Session...'], m_textadept.session.save }, SEPARATOR, { _L['_Quit'], quit }, }, @@ -127,8 +127,8 @@ M.menubar = { { _L['_Filter Through'], _M.textadept.filter_through.filter_through }, SEPARATOR, { title = _L['_Adeptsense'], - { _L['_Complete Symbol'], m_textadept.adeptsense.complete_symbol }, - { _L['Show _Documentation'], m_textadept.adeptsense.show_documentation }, + { _L['_Complete Symbol'], m_textadept.adeptsense.complete }, + { _L['Show _Documentation'], m_textadept.adeptsense.show_apidoc }, }, { title = _L['_Bookmark'], { _L['_Toggle Bookmark'], m_bookmarks.toggle }, |