From b36206ca3bc19b06fc460204601eba254ab395b1 Mon Sep 17 00:00:00 2001 From: Machiste Quintana Date: Fri, 24 Apr 2015 19:32:11 -0400 Subject: [PATCH] Add Select Inside Brackets to Selection menu --- menus/bracket-matcher.cson | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/menus/bracket-matcher.cson b/menus/bracket-matcher.cson index b9077aa..c8825d5 100644 --- a/menus/bracket-matcher.cson +++ b/menus/bracket-matcher.cson @@ -7,9 +7,15 @@ { 'label': 'Go To Matching Bracket', 'command': 'bracket-matcher:go-to-matching-bracket' } { 'label': 'Select Inside Brackets', 'command': 'bracket-matcher:select-inside-brackets' } { 'label': 'Remove Brackets From Selection', 'command': 'bracket-matcher:remove-brackets-from-selection' } - { 'label': 'Close Current Tag', 'command': 'bracket-matcher:close-tag'} - { 'label': 'Remove Matching Brackets', 'command': 'bracket-matcher:remove-matching-brackets'} + { 'label': 'Close Current Tag', 'command': 'bracket-matcher:close-tag' } + { 'label': 'Remove Matching Brackets', 'command': 'bracket-matcher:remove-matching-brackets' } ] ] + }, + { + 'label': 'Selection' + 'submenu': [ + { 'label': 'Select Inside Brackets', 'command': 'bracket-matcher:select-inside-brackets' } + ] } ]