简体   繁体   中英

error message in simple .vimrc file

When I put in my .vimrc file:

"set backspace =2; set nocompatible; syntax on;"

It works fine and uses these settings when I open a new vim file however I get the error message:

Error detected while processing /mount/autofs/home_stude1/a/afarah/.vimrc: line 1: E474: Invalid argument: backspace =2; line 2: E488: Trailing characters: nocompatible;

probably trivial, but not sure how to fix it.

Use the following instead.

set backspace=2 nocompatible
syntax on

Vim's script syntax does not use semicolons AFAIK.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM