11

In JetBrains IDEs (such as WebStorm) is there a keyboard shortcut to jump to the matching end HTML tag or matching beginning HTML tag?

LazyOne
  • 158,824
  • 45
  • 388
  • 391
Casebash
  • 114,675
  • 90
  • 247
  • 350

1 Answers1

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.

LazyOne
  • 158,824
  • 45
  • 388
  • 391
Adi Levin
  • 5,165
  • 1
  • 17
  • 26
  • 2
    You 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