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)。
PS 文件类型插件缩进。
更新:
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>
我怎样才能解决这个问题?