Jump between matching parentheses and jump between matching keywords

The % command lets us jump between opening and closing sets of parentheses (see :h % ). It works with (), {}, and [].

Example

{start} console.log([{‘a’:1},{‘b’:2}]) % console.log([{‘a’:1},{‘b’:2}]) h console.log([{‘a’:1},{‘b’:2}]) % console.log([{‘a’:1},{‘b’:2}]) l console.log([{‘a’:1},{‘b’:2}]) % console.log([{‘a’:1},{‘b’:2}])