码迷,mamicode.com
首页 > 系统相关 > 详细

vim代码片段插件ultisnips的使用

时间:2020-02-09 09:58:49      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:为我   you   edits   edit   通过   定义   window   ack   com   

ultisnips是一个可以自动进行代码补全的插件,可以通过Vundle进行安装,要启用ultisnips,首先可以下面的配置信息写入到~/.vimrc

" Track the engine.
Plugin 'SirVer/ultisnips'

" Snippets are separated from the engine. Add this if you want them:
Plugin 'honza/vim-snippets'

" Trigger configuration. Do not use <tab> if you use https://github.com/Valloric/YouCompleteMe.
let g:UltiSnipsExpandTrigger="<c-b>"
let g:UltiSnipsJumpForwardTrigger="<c-b>"
let g:UltiSnipsJumpBackwardTrigger="<c-z>"

" If you want :UltiSnipsEdit to split your window.
let g:UltiSnipsEditSplit="vertical"

请注意我这边设置通过ctrl+b触发代码补全,因为我已经安装了YouCompleteMe插件,所以能使用tab来触发补全
配置完成后使用在vim中使用:PluginInstall安装插件
我们也可以自己定义语法,格式如下:

snippet 触发字符 ["代码片段说明" [参数]]
代码片段内容
endsnippet

vim代码片段插件ultisnips的使用

标签:为我   you   edits   edit   通过   定义   window   ack   com   

原文地址:https://www.cnblogs.com/zmichael/p/12286036.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!