关于出现Not an editor command: Bundle '**/*.vim'的解决方案
Posted sky-heaven
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于出现Not an editor command: Bundle '**/*.vim'的解决方案相关的知识,希望对你有一定的参考价值。
转自: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
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就出现以上错误提示,可能原因
- 没有安装Vundle插件管理,可以通过
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'的解决方案的主要内容,如果未能解决你的问题,请参考以下文章
关于javac is not recognized as an internal or external command, operable program or batch file的解决方案
安装 Android SDK 后出现“sdkmanager: command not found”
"Ipconfig" not recognized as an internal command
'react-scripts' is not recognized as an internal or external command
如何找到‘.‘ is not recognized as an internal or external command的根本原因和解决方案
‘vue-cli-service‘ is not recognized as an internal or external command