을(를) 사용하는 데 문제가 있습니다 taglist
. 예를 들어 I 이면 TlistOpen
오류가 표시됩니다.E117: Unknown function: taglist#Tlist_Window_Toggle
저는 vimrc가 다음과 같은 Ubuntu18.04를 사용하고 있습니다.
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/plugin
. My는 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
README.md
Vundle에서 제거하라고 지시 하는 예는 다음과 같습니다 .
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이 을 찾아서 호출할 수 없도록 ~/.vim/taglist/plugin/
대신에 을 추가한다는 :help 'runtimepath'
것 입니다 .~/.vim/taglist/
~/.vim/taglist/autoload/
taglist#Tlist_Window_Toggle()
바꾸다:
set rtp+=~/.vim/taglist/plugin/
에게:
set rtp+=~/.vim/taglist/
일시적으로 당신을 문제에서 벗어나게 할 것이지만 여전히 혼란에 빠질 것입니다.
수동 방법을 포기하고 플러그인 관리자가 모든 것을 처리하도록 하는 것이 좋습니다.
~/.vim/taglist/
컴퓨터에서 삭제하세요 .set rtp+=~/.vim/taglist/
에서 제거하세요vimrc
.- 에서
Plugin 'taglist.vim'
로 바꾸세요 .Plugin 'yegappan/taglist'
vimrc
- 플러그인 관리자의 문서를 읽고 익숙해지세요.