Vim:snipMate插件不会触发代码段完成

前端之家收集整理的这篇文章主要介绍了Vim:snipMate插件不会触发代码段完成前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Vim安装在/usr/share / vim.

所有snipMate文件夹都相应地添加到现有文件夹(自动加载,自动加载,插件,片段等)中的此类别中.

从文档文件

For instance,to change the trigger
key to CTRL-J,just change this:

ino <tab> <c-r>=TriggerSnippet()<cr> 
snor <tab> <esc>i<right><c-r>=TriggerSnippet()<cr>

to this: 
ino <c-j> <c-r>=TriggerSnippet()<cr>  
snor <c-j> <esc>i<right><c-r>=TriggerSnippet()<cr>

我也试过这个 – 结果相同.
当我尝试触发片段匹配时,它只添加一个标签(4个空格,相应于我的.vimrc).

附: filetype插件缩进.

更新:

cat /etc/issue
Ubuntu 9.10

下:inoremap

i  <C-B>       * <C-R>=TriggerSnippet()<CR>

:snoremap

s  <C-B>       * <Esc>i<Right><C-R>=TriggerSnippet()<CR>

我怎样才能解决这个问题?

我遇到了snipMate的问题,它无法正常工作,所以我遇到了 Issue 66 in their Issue Tracker
source ~/.vim/after/plugin/snipMate.vim
原文链接:https://www.f2er.com/bash/384753.html

猜你在找的Bash相关文章