标签:sdn ted -bash log ash lin 有关 oba syn
转自:https://blog.csdn.net/YHM07/article/details/49717933
$ uname -r
2.6.32-573.7.1.el6.x86_64
$ cat /etc/issue
CentOS release 6.7 (Final)
Kernel \r on an \m
在使用crontab -e
或者是less
的编辑命令时出现错误提示:
Error detected while processing /home/centos/.vimrc:
line 54:
E518: Unknown option: autochdir
line 92:
E518: Unknown option: foldenable
line 93:
E518: Unknown option: foldmethod =syntax
line 94:
E518: Unknown option: foldcolumn =0
line 95:
E518: Unknown option: foldlevel =1
line 166:
E492: Not an editor command: Bundle ‘gmarik/Vundle.vim’
line 171:
E492: Not an editor command: Bundle ‘scrooloose/nerdtree’
line 172:
E492: Not an editor command: Bundle ‘Lokaltog/vim-powerline’
line 173:
E492: Not an editor command: Bundle ‘scrooloose/syntastic’
line 175:
E492: Not an editor command: Bundle ‘davidhalter/jedi-vim’
单独使用vim编辑文件时并没有如此错误提示。
由于单独使用vim时并没有如此错误,怀疑默认的编辑器并非vim,利用echo $EDITOR
查看默认的编辑器结果为空,因此设置默认的编辑器为vim.
编辑~/.bashrc,在末尾添加export EDITOR=vim
,然后执行source ~/.bashrc
,然后在运行以上的如crontab -e
或者less
命令错误提示没有出现,问题解决。
如果单独使用vim就出现以上错误提示,可能原因
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
安装。Vundle
插件管理,仍然出现以上错误提示,可能是没有运行相关命令安装对应插件导致,可以通过在vim中运行:BundleInstall
来解决该问题。关于Vundle的详情请参考github/Vundle。
在查看有关该类问题的解决方案时,发现有人在使用git commit -v
命令时也会有同样错误出现,而解决方案也是可以通过修改的git的默认编辑器也完成。
git config --global core.editer vim
关于出现Not an editor command: Bundle '**/*.vim'的解决方案【转】
标签:sdn ted -bash log ash lin 有关 oba syn
原文地址:https://www.cnblogs.com/sky-heaven/p/9402394.html