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

我已将 taglist 克隆到.vim/taglist/plugin。我的Exuberant 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

以及 VundleREADME.md告诉您删除的示例:

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'

这没有任何意义。

引起注意的第二件事是,你添加了~/.vim/taglist/plugin/:help 'runtimepath'不是~/.vim/taglist/,这会阻止 Vim 找到~/.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. 阅读插件管理器的文档以熟悉它。

相关内容