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

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

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

android - How to create dynamically Fragment pager adapter -