In JetBrains IDEs (such as WebStorm) is there a keyboard shortcut to jump to the matching end HTML tag or matching beginning HTML tag?
Asked
Active
Viewed 1,419 times
1 Answers
13
Yes there is:
- Ctrl - [ to jump to the beginning tag
- Ctrl - ] to jump to the ending tag
In Settings -> Appearance & Behavior -> Keymap
, these are the "Move Caret to Code Block End" and "Move Caret to Code Block Start" actions.
-
2You can also assign shortcut to `Editor Actions | Move Caret to Matching Brace` action -- it navigates between opening and closing brace/tag with one shortcut. – LazyOne Jan 08 '16 at 15:03
-
Some time ago I have been looking for the same shortcut in Eclipse. – Pochmurnik Mar 03 '19 at 12:13