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 + %

http://vim.rtorr.com/


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -