aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2011-09-21 17:58:38 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2011-09-21 17:58:38 -0400
commit521507f09158c237c0be22c2b27d0f7b00676967 (patch)
treef216abe422f36ca4cca0c17224d7ade8640c663b /modules
parent808726ed1beb6cb01cf54e45e7d71a6e0c447f29 (diff)
downloadtextadept-521507f09158c237c0be22c2b27d0f7b00676967.tar.gz
textadept-521507f09158c237c0be22c2b27d0f7b00676967.zip
Rearranged Tools menu.
Diffstat (limited to 'modules')
-rw-r--r--modules/textadept/menu.lua12
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 },
},