bracket-matcher.cson 883 B

12345678910111213141516171819202122
  1. 'menu': [
  2. {
  3. 'label': 'Packages'
  4. 'submenu': [
  5. 'label': 'Bracket Matcher'
  6. 'submenu': [
  7. { 'label': 'Go To Matching Bracket', 'command': 'bracket-matcher:go-to-matching-bracket' }
  8. { 'label': 'Select Inside Brackets', 'command': 'bracket-matcher:select-inside-brackets' }
  9. { 'label': 'Remove Brackets From Selection', 'command': 'bracket-matcher:remove-brackets-from-selection' }
  10. { 'label': 'Close Current Tag', 'command': 'bracket-matcher:close-tag' }
  11. { 'label': 'Remove Matching Brackets', 'command': 'bracket-matcher:remove-matching-brackets' }
  12. { 'label': 'Select Matching Brackets', 'command': 'bracket-matcher:select-matching-brackets' }
  13. ]
  14. ]
  15. },
  16. {
  17. 'label': 'Selection'
  18. 'submenu': [
  19. { 'label': 'Select Inside Brackets', 'command': 'bracket-matcher:select-inside-brackets' }
  20. ]
  21. }
  22. ]