diff options
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r-- | modules/textadept/menu.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index 304a4f0d..82c72cfa 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -127,12 +127,6 @@ menubar = { { L('Complete Symbol'), m_textadept.adeptsense.complete_symbol }, { L('Show Documentation'), m_textadept.adeptsense.show_documentation }, }, - { title = L('Snippets'), - { L('Insert Snippet...'), m_textadept.snippets._select }, - { L('Expand Snippet/Next Placeholder'), m_textadept.snippets._insert }, - { L('Previous Snippet Placeholder'), m_textadept.snippets._previous }, - { L('Cancel Snippet'), m_textadept.snippets._cancel_current }, - }, { title = L('Bookmark'), { L('Toggle Bookmark'), m_textadept.bookmarks.toggle }, { L('Clear Bookmarks'), m_textadept.bookmarks.clear }, @@ -145,6 +139,12 @@ menubar = { { L('Snapopen Textadept Home'), { m_textadept.snapopen.open, _HOME } }, { L('Snapopen Current Directory'), utils.snapopen_filedir }, }, + { title = L('Snippets'), + { L('Insert Snippet...'), m_textadept.snippets._select }, + { L('Expand Snippet/Next Placeholder'), m_textadept.snippets._insert }, + { L('Previous Snippet Placeholder'), m_textadept.snippets._previous }, + { L('Cancel Snippet'), m_textadept.snippets._cancel_current }, + }, SEPARATOR, { L('Show Style'), utils.show_style }, }, |