ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Bracketeer

Some bracket manipulation, selection, and insertion commands.

Details

Installs

  • Total 52K
  • Win 33K
  • Mac 11K
  • Linux 8K
Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12
Windows 1 2 0 1 0 4 5 1 1 2 0 4 1 2 1 2 0 1 2 2 0 2 1 1 2 1 2 0 1 1 1 4 1 1 1 2 3 0 3 1 0 0 0 1 2 0
Mac 1 1 0 1 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 0
Linux 0 1 1 0 0 0 0 0 2 0 1 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 0 2 0 0 2 1 0 0 1 0 0 1 1 0 0 1 1 1

Readme

Source
raw.​githubusercontent.​com

Bracketeer

Some bracket manipulation, selection, and insertion commands.

Installation

  1. Using Package Control, install “Bracketeer”

Or:

  1. Open the Sublime Text Packages folder

    • OS X: ~/Library/Application Support/Sublime Text 3/Packages/
    • Windows: %APPDATA%/Sublime Text 3/Packages/
    • Linux: ~/.Sublime Text 3/Packages/ or ~/.config/sublime-text-3/Packages
  2. clone this repo

  3. Install keymaps for the commands (see Example.sublime-keymap for my preferred keys)

Commands

bracketeer: Surrounds selected text with braces (or quotes - anything, really), and prevents indentation mishaps.

bracketeer_indent: Indents sensibly - allows a clever use of enter, indent, and '{' to surround code in '{}'. See example below.

bracketeer_goto: Goes to the matching bracket - either opener, closer, or both (creates two cursors).

bracketeer_select: Searches for matching brackets and selects what is inside, or expands the selection to include the brackets.

Keybindings

Open your key bindings file and add the bindings you want. For example:

Example.sublime-keymap

In depth

Command: bracketeer

Default key combination: any opening bracket or quote character, possibly combined with select and replace options

Options:

braces: Required String with open/close characters, or list of [open, close]. Default key bindings support:

  • {}
  • []
  • ()
  • <>
  • «»
  • ‹›
  • ""
  • ''
  • “”
  • ‘’
  • \

select: Default: false Whether to select the text after brackets are inserted. Sublime Text usually does keep the text selected, so this command emulates that behavior. The example keymap file has these mapped to ["ctrl+[", bracket]

replace: If the selection is contained inside bracket characters, they will be replaced with new brackets. For example, to change curly brackets to square brackets:

  1. Use bracketeer_select to select inside the curly brackets
  2. Press "ctrl+alt+[", "[" (from Example.sublime-keymap) and '(text)' changes to '[text]'

The default Sublime Text command re-indents text after pressing a bracket key, and it looks really silly to me. This plugin indents sensibly. Helpful in languages that use curlies, e.g. C, Java, PHP.

In addition, the "super+]” indent command is modified (using bracketeer_indent) so that the first and last lines are not indented. Makes it easy to add curly braces. Select some lines of code, with a blank line above and below. Or, if you like your braces on the same line as the if|while|do, put the start of the selection at the end of that line.

Press super+], then press “{”. The block of code will be indented, leaving the code highlighted, then you can surround it in braces.

1. if ( a )
2. echo NULL;

# add blank lines
1. if ( a )
2.
3. echo NULL;
4.

# select text
1. if ( a )
2. |
3. echo NULL;
4. |

# press super+]
1. if ( a )
2. |
3.     echo NULL;
4. |

# press {
1. if ( a )
2. {
3.     echo NULL;|   # notice, the cursor moves *inside* the new brackets
4. }

If you prefer “Kernigan and Ritchie” style brackets, start the selection on the previous line

1. if ( a )
2. echo NULL;
3.

# select text
1. if ( a )|
2. echo NULL;
3. |

# press super+]
1. if ( a )|
2.     echo NULL;
3. |

# press {
1. if ( a ) {        # a space is inserted before the '{' (unless it's already there!)
2.     echo NULL;|   # and again, the cursor moves *inside* the new brackets
3. }

Command: bracketeer_indent

Default key combination is super+]

If the first line of selected text is empty (and keep in mind this ignores whatever text is to the left of the selection, so not necessarily an empty line), that line will not be indented. See example usage above.

Command: bracketeer_select

Default key combination is ctrl+shift+[

Expands the current region to include text within brackets, and if pressed again to include the brackets themselves.

I will use '|' as the caret or selection start and end points:

1. do_something([1, '[', {'brace':'{', 'test'}])|

# move caret into the 'test' string
1. do_something([1, '[', {'brace':'{', 'te|st'}])

# press ctrl+shift+[
# the first bracket it finds is the '}', so it will match {}s
# notice it will ignore the '{', which would otherwise look like the matching brace
1. do_something([1, '[', {|'brace':'{', 'test'|}])

# press ctrl+shift+[
# adds the {} to the selection
1. do_something([1, '[', |{'brace':'{', 'test'}|])

# press ctrl+shift+[
# selects between the []s.
1. do_something([|1, '[', {'brace':'{', 'test'}|])

# press ctrl+shift+[
# selects the []s.
1. do_something(|[1, '[', {'brace':'{', 'test'}]|)

# press ctrl+shift+[
# selects the ()s. It would have expanded to select *between* the (), but that is what the selection already *was to start with*
1. do_something|([1, '[', {'brace':'{', 'test'}])|

# press ctrl+shift+[
# does nothing.  No more brackets to match!
1. do_something|([1, '[', {'brace':'{', 'test'}])|