我最近安装了cygwin(因为我只限于Windows操作系统),并希望在其中使用Vim。一切都已安装,我可以随时访问vim并可以修改.vimrc等。从之前的帖子中,我了解到我的插件必须是用于Windows操作系统的vimfiles并且已经这样做了。但是,现在当我尝试验证病原体时,我得到一个错误说明:
E492: Not an editor command: ^M (this repeats a couple times)
E15: Invalid expression: exists("g:loaded_pathogen") || &cp^M
E117: Unknown function: pathogen#infect
我的.virmc(再次非常基本,只是试图开始一切)
version 6.0
if &cp | set nocp | endif
let s:cpo_save=$cpo
enter code here
set cpo&vim
map! <C-Home> <C-Home>
map! <C-End> <C-End>
let &cpo=s:cpo_save
unlet s:cpo_save
set autoindent
set ff=unix
set background=dark
set backspace=2
set fileencodings=ucs-bom,utf-8,default,latin1
set helplang=en
set history=50
set laststatus=2
set ruler
set shelltemp
set viminfo='100,<50,s10,h
set window=55
" vim: set ft=vim :
call pathogen#infect()
syntax on
filetype plugin indent on
此致
答案 0 :(得分:3)
尝试执行以下命令:
find ~/.vim -type f -exec dos2unix \"{}\" \;
这会将~/.vim
目录下的所有文件转换为unix文件格式。它应该删除您看到的^M
错误。
答案 1 :(得分:0)
在.vimrc文件中我注意到
set ff=unix
但是在vim中,以下命令解释了一些事情,
:help dos-file-formats
If the 'fileformat' option is set to "dos" (which is the default), Vim accepts
a single <NL> or a <CR><NL> pair for end-of-line (<EOL>). When writing a
file, Vim uses <CR><NL>. Thus, if you edit a file and write it, Vim replaces
<NL> with <CR><NL>.
If the 'fileformat' option is set to "unix", Vim uses a single <NL> for <EOL>
and shows <CR> as ^M.
You can use Vim to replace <NL> with <CR><NL> by reading in any mode and
writing in Dos mode (":se ff=dos").
You can use Vim to replace <CR><NL> with <NL> by reading in Dos mode and
writing in Unix mode (":se ff=unix").
Vim sets 'fileformat' automatically when 'fileformats' is not empty (which is
the default), so you don't really have to worry about what you are doing.
所以,你应该尝试删除
set ff=unix
行,或修复文件行的结尾。
答案 2 :(得分:0)
我遇到了同样的问题。在您的包文件上调用“dos2unix”的上述解决方案(由nullrevolution提出)应该可以解决当前插件的问题。
对于未来,我发现我的问题是由git config core.autocrlf设置为true将git repos克隆到bundle目录中引起的。在我将git config core.autocrlf设置为false后,我再次克隆了插件,然后又返回到UNIX-y文件结尾。