Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 1.1 KB

README.md

File metadata and controls

26 lines (21 loc) · 1.1 KB

Bracket Selection

IntelliJ IDEA plugin for selecting content between bracket pairs or quotes.
Bracket pairs can be "<>", "[]", "{}", "()"
https://plugins.jetbrains.com/plugin/11322-bracket-selection

These are the possibilities:

  • Select everything from the first found opening brace to the matching closing brace (default mouse shortcut: alt button1 doubleclick, button1 is left click)
    everything_brackets
  • Select everything between single or double quotes (default mouse shortcut: alt button3 doubleclick, button1 is right click)
    everything_quotes
  • Select everything from the first found opening brace to current cursor (not bound by default)
  • Select everything from the current cursor to to the first found closing brace (not bound by default)

Most languages should be supported, you can create an issue if one is not.

Contribute

Setup

git clone <repo_url>
cd <repo_dir>
./gradlew idea

Known issues

  • Multi line strings in kotlin are not supported for quote selection