私はvim-snipmateプラグイン(特にこのフォーク - https://github.com/garbas/vim-snipmate)でVim(Debian Squeezeの7.2.445)を使用しています
できるはずのショートカットの 1 つは、挿入モードでCtrl- R、Tab、使用可能なすべてのスニペットのリストを表示することです。ただし、リストは表示されますが、 を押すと最初の項目が自動的にファイルに挿入されます。Tab選択していないにもかかわらず、リストを使用したり、上下にスクロールしたり、さらに入力したりすることはできませJんK。文字を入力して検索を絞り込みます。
これは私の.vimrc
です:
syntax on
set shiftwidth=4
set tabstop=4
set autoindent
set smartindent
set cursorline
set ruler
if version >= 703
set relativenumber
else
set number
endif
inoremap jj <ESC>
set hlsearch
noremap <Up> ""
noremap! <Up> <Esc>
noremap <Down> ""
noremap! <Down> <Esc>
noremap <Left> ""
noremap! <Left> <Esc>
noremap <Right> ""
noremap! <Right> <Esc>
inoremap <M-o> <Esc>o
inoremap <C-j> <Down>
let g:ragtag_global_maps = 1
filetype plugin on
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()