diff options
author | 2011-09-21 17:58:38 -0400 | |
---|---|---|
committer | 2011-09-21 17:58:38 -0400 | |
commit | 521507f09158c237c0be22c2b27d0f7b00676967 (patch) | |
tree | f216abe422f36ca4cca0c17224d7ade8640c663b /modules | |
parent | 808726ed1beb6cb01cf54e45e7d71a6e0c447f29 (diff) | |
download | textadept-521507f09158c237c0be22c2b27d0f7b00676967.tar.gz textadept-521507f09158c237c0be22c2b27d0f7b00676967.zip |
Rearranged Tools menu.
Diffstat (limited to 'modules')
-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 }, }, |