技巧55-在匹配括号间跳转
- % 命令允许在一组开、闭括号间跳转(参见:h %),可作用于:(),{},[]。
- matchit 插件增强%
- vimrc开启matchit
set nocompatible
filetype plugin on
runtime macros/matchit.vim
surround.vim插件
- S" 命令用一对双引号报选中的文本括起来
S"
s)
s}
- cs]} 命令把] 修改为}
set nocompatible
filetype plugin on
runtime macros/matchit.vim
S"
s)
s}