Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Indent To BracketNew to Visual Studio Code? Get it now.

Indent To Bracket

LAK132

|
7,173 installs
| (8) | Free
Indents new lines to the last open bracket / parenthesis
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

VS Code extension for indenting to open brackets

Fork of https://github.com/briankendall/vscode-indent-to-bracket with added support for multiple cursors/selections.

This is a minimal extension for VS Code that implements automatic indentation to the last open bracket / parenthesis. This is essentially the same feature as the indent_to_bracket setting in Sublime Text, except that it works with most brackets, including square, and curly brackets. (Currently angle brackets are not supported.)

Basically, when you type enter to create a new line, it automatically indents your code like this:

variable = someMannerOfFunction(argument1,
                                argument2,
                                anotherArgument,
                                (someNumber +
                                 someOtherNumber))
someData = {'key': [1, 2, 3, 4, 5, 6, 7, 8,
                    9, 10, 11, 12, 13, 14],
            'anotherKey': {'what': 'huh?',
                           'who': 'wha?',
                           'where': 'guh?'},
            'lastKey': ('This is a string that ' \
                        'goes on too long to ' \
                        'easily fit on one line ' \
                        'if you're using some ' \
                        'weird terminal that ' \
                        'only has 52 columns ' \
                        'for some reason')

By default if any line ends with an open bracket of some sort, it will fall back on the default behavior for your current language. So it won't interfere with things like if statements or declaring functions with curly braces, and doing something like this still works:

variable = someOtherFunction(
    argument1,
    argument2,
    argument3
);

Settings indent-to-bracket.useDefaultIndentationAfterEmptyBracket to false however will make any new lines directly after an empty bracket will be indented one level beyond the previous open bracket:

testing(testing123(
            "helloooo"));

Extension Settings

indent-to-bracket.useDefaultIndentationAfterEmptyBracket: If false, then any new lines directly after an empty bracket will be indented one level beyond the previous open bracket. If true, the default vscode behaviour will be used. Defaults to true.

Release Notes

1.2.2

  • Fix multiple cursors not working when inside a bracket pair

1.2.1

  • Fix indentation behaviour when pressing newline inside bracket pair to resemble default vs code behaviour.

1.1.0

  • Support multiple cursors.

1.0.2

  • Add option for Emacs style indentation after an empty bracket

1.0.1

  • No longer considering angle brackets -- did not work with boolean logic or bitwise operators
  • Fixed bug where typing a new line after an open bracket while text is selected would not replace the text

1.0.0

  • Initial release
  • Contact us
  • Jobs
  • Privacy
  • Terms of use
  • Trademarks
© 2023 Microsoft