IntelliJ IDEA keyboard shortcut for matching bracket -
if |
cursor position
list<string> words = arrays.aslist(|"all cats grey".split(" "));
then shortcut jump closing bracket
list<string> words = arrays.aslist("all cats grey".split(" ")|);
note, per this question shortcuts ctrl+{ , ctrl+} work jumping between braces { }
not brackets ( )
note 2: standard intellij keymap
i don't think there exsists shortcut round parenthesis. working itellij years, never found one.
ctrl
+key
depends on keymap. can change in settings -> keymap -> [keymaps:]. haven't found round parenthesis, have overlooked it.
edit: possible solution be, install plugin ideavim , use shift
+ %
Comments
Post a Comment