TagList vimプラグインが動作しない

TagList vimプラグインが動作しない

の使用に問題がありますtaglist。たとえば、 の場合TlistOpen、エラーが表示されますE117: Unknown function: taglist#Tlist_Window_Toggle

私はUbuntu18.04を使用しており、vimrcは次のようになります。

test@test-VirtualBox:~/.vim/taglist/plugin$ cat ~/.vimrc
set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
set rtp+=~/.vim/taglist/plugin/
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'

" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
" Plugin 'L9'
" Git plugin not hosted on GitHub
Plugin 'git://git.wincent.com/command-t.git'
" git repos on your local machine (i.e. when working on your own plugin)
Plugin 'file:///home/gmarik/path/to/plugin'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Install L9 and avoid a Naming conflict if you've already installed a
" different version somewhere else.
" Plugin 'ascenator/L9', {'name': 'newL9'}

Plugin 'taglist.vim'
" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList       - lists configured plugins
" :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
set tags=/home/test/code/tags

タグリストを にクローンしました.vim/taglist/pluginExuberant Ctagsは にインストールされており/usr/bin/ctags、パスは で利用可能ですPATH。 vim プラグイン マネージャーをインストールしましたvundle。 cscope と ctags を ディレクトリに設定しましたcode。 しかし、TlistOpenに入るとvim、エラー メッセージが表示されます。E117: Unknown function: taglist#Tlist_Window_Toggle

答え1

まず、コメントのノイズをすべて削除することから始めましょうvimrc:

set nocompatible              " be iMproved, required
filetype off                  " required
set rtp+=~/.vim/bundle/Vundle.vim
set rtp+=~/.vim/taglist/plugin/
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'git://git.wincent.com/command-t.git'
Plugin 'file:///home/gmarik/path/to/plugin'
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
Plugin 'taglist.vim'
call vundle#end()            " required
filetype plugin indent on    " required
set tags=/home/test/code/tags

README.mdVundle が削除するように指示している例:

set nocompatible              " be iMproved, required
filetype off                  " required
set rtp+=~/.vim/bundle/Vundle.vim
set rtp+=~/.vim/taglist/plugin/
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'taglist.vim'
call vundle#end()            " required
filetype plugin indent on    " required
set tags=/home/test/code/tags

そして無関係な定型文:

set rtp+=~/.vim/bundle/Vundle.vim
set rtp+=~/.vim/taglist/plugin/
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'taglist.vim'
call vundle#end()            " required
set tags=/home/test/code/tags

最初に目につくのは、そのプラグインを手動で管理しようとしていることです。

set rtp+=~/.vim/taglist/plugin/

プラグインマネージャーでは次のようになります:

Plugin 'taglist.vim'

それは意味をなさない。

2 番目に目を引くのは、の代わりに~/.vim/taglist/plugin/を追加しているため、Vim が を見つけられず、 を呼び出すことができないことです。:help 'runtimepath'~/.vim/taglist/~/.vim/taglist/autoload/taglist#Tlist_Window_Toggle()

変化:

set rtp+=~/.vim/taglist/plugin/

に:

set rtp+=~/.vim/taglist/

一時的には問題から逃れられるかもしれませんが、それでも混乱は残ります。

手動の方法を放棄し、プラグイン マネージャーにすべてを処理させることをお勧めします。

  1. ~/.vim/taglist/マシンから削除します。
  2. set rtp+=~/.vim/taglist/から削除しますvimrc
  3. 内のPlugin 'taglist.vim'を に置き換えます。Plugin 'yegappan/taglist'vimrc
  4. プラグイン マネージャーのドキュメントを読んで、プラグイン マネージャーについて理解を深めてください。

関連情報