javascript - vim no editor command. :SyntasticInfo -
trying customise javascript dev environment these instructions. can build plugins vim +plugininstall +qall, i'm using vundle, not editor command: syntasticinfofrom vim. have same problem :helptags.
how can fix this?
update - error logs
[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 update - vimrc
set nocompatible " improved, required filetype off " required " set runtime path include vundle , initialize set rtp+=~/.vim/bundle/vundle.vim call vundle#begin() " alternatively, pass path 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 79 columns broken set shiftwidth=4 " operation >> indents 4 columns; << unindents 4 columns set tabstop=4 " hard tab displays 4 columns set expandtab " insert spaces when hitting tabs set softtabstop=4 " insert/delete 4 spaces when hitting tab/backspace set shiftround " round indent multiple of 'shiftwidth' set autoindent imap <c-c> <cr><esc>0
please check vim plugins , autoload dirs - maybe have installed syntastic years ago , forgot it?
i got same error , after deleted syntastic entries in /autoload , /plugins dir (so only location syntastic in vundles bulde dir) worked.
Comments
Post a Comment