다음 명령을 사용하여 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 -- 따옴표)이지만 유사해 보이지만 동일하지 않은 문자를 사용하고 있습니다: ”
(유니코드 값 0x201d -- 오른쪽 큰따옴표)
캐릭터를 교체하면 작동합니다.