我使用Vim與cscope,ctags和TagList。 當我使用vim打開文件時。我能夠使用標記列表,但是當我使用cscope打開一個文件時,總會有誤差:E492:不是編輯器命令:TlistToggle
Error detected while processing /gauravg/.vimrc:
line 9:
E492: Not an editor command: Bundle 'VundleVim/Vundle.vim'
line 13:
E492: Not an editor command: Plugin 'plugin/taglist.vim'
Press ENTER or type command to continue
下面是我的.vimrc文件:
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle
" required!
Bundle 'VundleVim/Vundle.vim'
call vundle#end()
"Plugin 'tpope/vim-fugitive'
"Plugin 'steffanc/cscopemaps.vim'
Plugin 'plugin/taglist.vim'
請幫我解決這個問題。
你安裝'vundle'? – dlmeetei
確保'$ EDITOR'和/或'$ CSCOPE_EDITOR'指向正確的Vim。 – romainl
編輯器和CSCOPE_EDITOR未設置 –