1

我尝试使用 vundle 在 vi​​m 上安装 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 时没有显示任何片段,也没有显示列表。我不知道 hot wo 配置 vim-snippets 以与 ultisnips 通信

4

1 回答 1

1

cj 是一个很常见的映射,可以被其他插件/或 tmux 使用,尝试将映射更改为 ce

于 2014-11-30T21:55:04.750 回答