diff options
author | 2014-05-24 12:09:44 -0400 | |
---|---|---|
committer | 2014-05-24 12:09:44 -0400 | |
commit | 68147393527efc2364e821a3979d853aac0e5940 (patch) | |
tree | b480658fc9ed2b9cec09564c6e44457fceff8dc3 /modules/textadept/menu.lua | |
parent | 0e201469a0913267011ce59ff12eb46c3be56a2f (diff) | |
download | textadept-68147393527efc2364e821a3979d853aac0e5940.tar.gz textadept-68147393527efc2364e821a3979d853aac0e5940.zip |
Removed Adeptsense in favor of new framework committed in r1735.
Replaced ANSI C and Lua module Adeptsenses with their equivalent autocompleter
functions.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r-- | modules/textadept/menu.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index 6dc3bc1b..4aac1eff 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -108,10 +108,6 @@ local menubar = { {_L['_Next Error'], {textadept.run.goto_error, false, true}}, {_L['_Previous Error'], {textadept.run.goto_error, false, false}}, SEPARATOR, - { title = _L['_Adeptsense'], - {_L['_Complete Symbol'], textadept.adeptsense.complete}, - {_L['Show _Documentation'], textadept.adeptsense.show_apidoc}, - }, { title = _L['_Bookmark'], {_L['_Toggle Bookmark'], textadept.bookmarks.toggle}, {_L['_Clear Bookmarks'], textadept.bookmarks.clear}, @@ -132,6 +128,8 @@ local menubar = { {_L['_Cancel Snippet'], textadept.snippets._cancel_current}, }, SEPARATOR, + {_L['_Complete Symbol'], utils.autocomplete_symbol}, + {_L['Show _Documentation'], textadept.editing.show_documentation}, {_L['Show St_yle'], utils.show_style}, }, { title = _L['_Buffer'], |