diff options
author | 2012-07-21 19:27:48 -0400 | |
---|---|---|
committer | 2012-07-21 19:27:48 -0400 | |
commit | a07b573d6b514d5288d09c8d4725177f57429e35 (patch) | |
tree | b61b497a6bdbf10dbed53256d388be7a202af36c | |
parent | 7db3af04cffe78db907d90330adf9929fa4cab32 (diff) | |
download | textadept-a07b573d6b514d5288d09c8d4725177f57429e35.tar.gz textadept-a07b573d6b514d5288d09c8d4725177f57429e35.zip |
Updated modules/textadept/menu.lua with new API.
-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 }, |