aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/menu.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2017-11-10 19:55:22 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2017-11-10 19:55:22 -0500
commit14d1c301791a77dc7afce20d4d68c3a34c414f21 (patch)
tree388e9fd0df61741ca28d3270dd43cd797fd47421 /modules/textadept/menu.lua
parent80e568c5e95b103ded1e19985f73a864b739cf04 (diff)
downloadtextadept-14d1c301791a77dc7afce20d4d68c3a34c414f21.tar.gz
textadept-14d1c301791a77dc7afce20d4d68c3a34c414f21.zip
Removed redundant "Select in delimiter" menus and keys.
They can be auto-detected now.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r--modules/textadept/menu.lua7
1 files changed, 1 insertions, 6 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua
index 7b2f2a81..672ddfa9 100644
--- a/modules/textadept/menu.lua
+++ b/modules/textadept/menu.lua
@@ -106,14 +106,9 @@ local default_menubar = {
end},
{
title = _L['_Select'],
- {_L['Select to _Matching Brace'], sel_enc},
+ {_L['Select between _Matching Delimiters'], sel_enc},
{_L['Select between _XML Tags'], function() sel_enc('>', '<') end},
{_L['Select in XML _Tag'], function() sel_enc('<', '>') end},
- {_L['Select in _Single Quotes'], function() sel_enc("'", "'") end},
- {_L['Select in _Double Quotes'], function() sel_enc('"', '"') end},
- {_L['Select in _Parentheses'], function() sel_enc('(', ')') end},
- {_L['Select in _Brackets'], function() sel_enc('[', ']') end},
- {_L['Select in B_races'], function() sel_enc('{', '}') end},
{_L['Select _Word'], textadept.editing.select_word},
{_L['Select _Line'], textadept.editing.select_line},
{_L['Select Para_graph'], textadept.editing.select_paragraph}