【发布时间】:2014-12-01 15:33:36
【问题描述】:
我尝试使用 vundle 在 vim 上安装 ultisnip,完全遵循以下代码:
" Snippets are separated from the engine. Add this if you want them:
Bundle 'honza/vim-snippets'
" Trigger configuration. Do not use <tab> if you use
https://github.com/Valloric/YouCompleteMe.
let g:UltiSnipsExpandTrigger="<c-j>"
let g:UltiSnipsJumpForwardTrigger="<c-b>"
let g:UltiSnipsJumpBackwardTrigger="<c-z>"
" If you want :UltiSnipsEdit to split your window.
let g:UltiSnipsEditSplit="vertical"
然后在 vim :PluginInstall.
安装成功,但是当我按 ctrl+j 时没有显示 sn-p,没有显示列表。 不知道怎么配置 vim-sn-ps 和 ultisnips 通信
【问题讨论】:
标签: vim code-snippets ultisnips