Vim E488 尾随字符,但我在文件中看不到任何尾随字符

Vim E488 尾随字符,但我在文件中看不到任何尾随字符

我使用以下命令打开 vimrc 文件vim ~/.bash_profile。这是错误消息以及 vim 文件内容。实际上,每当我用 VIM 打开任何文件时,我都会收到此错误。

Error detected while processing /Users/yako/.vimrc:
line    3:
E488: Trailing characters
Press ENTER or type command to continue

.vimrc 文件

"Pathogen
execute pathogen#infect()
call pathogen#helptags() ” generate helptags for everything in ‘runtimepath’
syntax on
filetype plugin indent on

答案1

用于注释的引号字符是"(ASCII 值 0x22 - 引号),但您使用的字符看起来相似,但不相同:(Unicode 值 0x201d - 右双引号)

替换角色就可以了。

相关内容