aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/menu.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2014-11-24 21:15:21 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2014-11-24 21:15:21 -0500
commit31399755d49c4501335e6c7146b06ee49f0e61bd (patch)
tree6e1e9921420447a593aad89b45bc5acad7529dcd /modules/textadept/menu.lua
parentdc57cc98d89d6579e1e8968643dc78207f702b1f (diff)
downloadtextadept-31399755d49c4501335e6c7146b06ee49f0e61bd.tar.gz
textadept-31399755d49c4501335e6c7146b06ee49f0e61bd.zip
Use Bash syntax highlighting for "filter through" via the command entry.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r--modules/textadept/menu.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua
index 500136ce..3e66ed27 100644
--- a/modules/textadept/menu.lua
+++ b/modules/textadept/menu.lua
@@ -58,7 +58,8 @@ local menubar = {
{_L['Toggle _Block Comment'], editing.block_comment},
{_L['T_ranspose Characters'], editing.transpose_chars},
{_L['_Join Lines'], editing.join_lines},
- {_L['_Filter Through'], {ui.command_entry.enter_mode, 'filter_through'}},
+ {_L['_Filter Through'],
+ {ui.command_entry.enter_mode, 'filter_through', 'bash'}},
{ title = _L['_Select'],
{_L['Select to _Matching Brace'], {editing.match_brace, 'select'}},
{_L['Select between _XML Tags'], {editing.select_enclosed, '>', '<'}},