标签: vim
我的TeX文档中有很多拉丁文字,请不要使用特殊命令\lat{anterior}进行包装。因此,当我将光标移到VIM上面的单词时,是否有一种有效的方法可以为当前单词添加前缀\lat{和后缀}?理想情况下使用键绑定?
\lat{anterior}
\lat{
}
答案 0 :(得分:2)
查看tpope/vim-surround插件。您可以按文件类型自定义它;见:help surround-customizing:
:help surround-customizing
autocmd FileType tex let b:surround_45 = "\\lat{\r}"