Ⅰ. 插件描述
Define your own surround patternsⅡ. 基本信息
|
Ⅲ. 安装方法
使用Vundle管理器安装
在你的.vimrc下添加:Plugin 'aldantas/vim-custom-surround'
… 然后在Vim中运行以下命令:
:source %
:PluginInstall
对于Vundle版本 < 0.10.2,请用上面的Bundle替换Plugin。
使用NeoBundle管理器安装
在你的.vimrc下添加:NeoBundle 'aldantas/vim-custom-surround'
… 然后在Vim中运行以下命令:
:source %
:NeoBundleInstall
使用VimPlug管理器安装
在你的.vimrc下添加:Plug 'aldantas/vim-custom-surround'
… 然后在Vim中运行以下命令:
:source %
:PlugInstall
使用Pathogen管理器安装
在终端中运行以下命令:cd ~/.vim/bundle
git clone https://github.com/aldantas/vim-custom-surround
Ⅳ. 文档说明
# vim-custom-surround
It's a simple plugin that lets you surround the word under cursor or the current
selection with custom strings.
To use it, just call one of the mode-specific commands:
:SurroundWord <text before> <text after>
:SurroundSelection <text before> <text after>
You can make your own normal and visual mappings for the above commands, or just use the functioncustomsurround#map
to do both for you. For example, to map a LaTeX inline math function just do:
call customsurround#map('<Leader>m', '\(', '\)')
See the doc for more detailed explanations:
:h vim-custom-surround
Installation
Use your prefered plugin manager. For Vundle, add
Plugin 'augustold/vim-custom-surround'
to your .vimrc
.