Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 592 Bytes

tip54.md

File metadata and controls

26 lines (18 loc) · 592 Bytes

#Tip54: Jump Between Matching Parentheses

##%

lets us jump between opening and closing sets of parentheses
it workds with () {} []

tip54_1

tip54_2

Jump Between Matching Keywords
Must enable matchit plugin.

set nocompatible
filetype plugin on
runtime macros/matchit.vim

Surround.vim
tip54_3

##S"

surround the selection with a pair of double quote marks.

##cs}]

change surrounding {} braces to [] brackets.

#Tip53 Tip55