aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/menu.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2013-04-24 10:06:11 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2013-04-24 10:06:11 -0400
commit36854c6ca8970714a6c672ca8774da4c5e9bd69e (patch)
treece192a95fef1f5f1202dd3008c85402656b35d2c /modules/textadept/menu.lua
parenta460a7a12a5465168b6ff89f3021cdc67f54ba76 (diff)
downloadtextadept-36854c6ca8970714a6c672ca8774da4c5e9bd69e.tar.gz
textadept-36854c6ca8970714a6c672ca8774da4c5e9bd69e.zip
Moved `_M.textadept.filter_through` functionality into `editing` module.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r--modules/textadept/menu.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua
index ede42afc..2c9c3244 100644
--- a/modules/textadept/menu.lua
+++ b/modules/textadept/menu.lua
@@ -66,6 +66,7 @@ local menubar = {
{_L['Toggle _Block Comment'], m_editing.block_comment},
{_L['T_ranspose Characters'], m_editing.transpose_chars},
{_L['_Join Lines'], m_editing.join_lines},
+ {_L['_Filter Through'], {gui.command_entry.enter_mode, 'filter_through'}},
{ title = _L['_Select'],
{_L['Select to _Matching Brace'], {m_editing.match_brace, 'select'}},
{_L['Select between _XML Tags'], {m_editing.select_enclosed, '>', '<'}},
@@ -119,7 +120,6 @@ local menubar = {
SEPARATOR,
{_L['_Run'], m_textadept.run.run},
{_L['_Compile'], m_textadept.run.compile},
- {_L['_Filter Through'], {gui.command_entry.enter_mode, 'filter_through'}},
SEPARATOR,
{ title = _L['_Adeptsense'],
{_L['_Complete Symbol'], m_textadept.adeptsense.complete},