vim没有编辑命令。 :SyntasticInfo

时间:2015-05-11 14:54:32

标签: javascript vim vim-plugin vundle

尝试使用these instructions自定义JavaScript开发环境。我可以使用vim +PluginInstall +qall使用Not an editor command: SyntasticInfo构建插件,但是我从vim获得了:Helptags。我对[2015-05-11 16:08:50] Helptags: |~ [2015-05-11 16:08:50] :helptags /my/path/to/.vim/bundle/Vundle.vim/doc |~ [2015-05-11 16:08:50] > Error running :helptags /my/path/to/.vim/bundle/Vundle.vim/doc |~ [2015-05-11 16:08:50] :helptags /my/path/to/.vim/bundle/vim-indent-guides/doc |~ [2015-05-11 16:08:50] > Error running :helptags /my/path/to/.vim/bundle/vim-indent-guides/doc |~ [2015-05-11 16:08:50] :helptags /my/path/to/.vim/bundle/delimitMate/doc |~ [2015-05-11 16:08:50] > Error running :helptags /my/path/to/.vim/bundle/delimitMate/doc |~ [2015-05-11 16:08:50] :helptags /my/path/to/.vim/bundle/syntastic/doc |~ [2015-05-11 16:08:50] > Error running :helptags /my/path/to/.vim/bundle/syntastic/doc |~ [2015-05-11 16:08:50] :helptags /my/path/to/.vim/bundle/YouCompleteMe/doc |~ [2015-05-11 16:08:50] > Error running :helptags /my/path/to/.vim/bundle/YouCompleteMe/doc |~ [2015-05-11 16:08:50] :helptags /my/path/to/.vim/bundle/tern_for_vim/doc |~ [2015-05-11 16:08:50] > Error running :helptags /my/path/to/.vim/bundle/tern_for_vim/doc |~ [2015-05-11 16:08:50] Helptags: 6 plugins processed 也有同样的问题。

我该如何解决这个问题?

更新 - 一些错误日志

vimrc

更新 - 我的set nocompatible " be iMproved, required filetype off " required " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " alternatively, pass a path where Vundle should install plugins "call vundle#begin('~/some/path/here') " let Vundle manage Vundle, required Plugin 'gmarik/Vundle.vim' Plugin 'jelera/vim-javascript-syntax' Plugin 'eakuefner/goog-pystyle' Plugin 'nathanaelkane/vim-indent-guides' Plugin 'Raimondi/delimitMate' Plugin 'scrooloose/syntastic' Plugin 'Valloric/YouCompleteMe' Plugin 'marijnh/tern_for_vim' set t_Co=256 set background=dark syntax on set textwidth=79 " lines longer than 79 columns will be broken set shiftwidth=4 " operation >> indents 4 columns; << unindents 4 columns set tabstop=4 " a hard TAB displays as 4 columns set expandtab " insert spaces when hitting TABs set softtabstop=4 " insert/delete 4 spaces when hitting a TAB/BACKSPACE set shiftround " round indent to multiple of 'shiftwidth' set autoindent imap <C-c> <CR><Esc>0

^[^.a-z]*[a-z][^.]*$

2 个答案:

答案 0 :(得分:0)

请检查你的vim插件和自动加载dirs - 也许你已经安装了多年前的合成并忘了它?

我得到了和你一样的错误,在我删除/ autoload和/ plugins目录中的合成条目后(因此只有合成的唯一位置是在vundles bulde目录中)才有效。

答案 1 :(得分:0)

我和你有同样的错误,但我有决心。

请检查目录权限。确保运行vim的用户可以修改此文件或目录。