0

我认为像 vim 这样的文本编辑器使用 # 来表示注释并跳过这些行。

这是我的 ~/.vimrc 文件的内容:

# Testing comments
set nocompatible

# Testing comments
set number

但是当我运行 vim 时,我得到了这个:

处理 /home/user/.vimrc 时检测到错误:

line 1:
E488: Trailing characters: # Testing comments
line 4:
E488: Trailing characters: # Testing comments

当我删除注释行时,它工作正常,但我希望能够在我的文本文件中添加注释而不会弄脏东西。有谁知道我做错了什么?

另外,我读到我不应该使用“””,因为这并不是真正的评论。那也适用于块。

4

2 回答 2

4

vim#用于评论;它使用引号。你.vimrc应该读

" Testing comments
set nocompatible

" Testing comments
set number

根据您对 的评论""",您似乎将 Python 评论与 Vim 评论混淆了。

于 2013-10-16T17:31:30.250 回答
1

在 .vimrc 中写评论你必须使用“你的文件看起来像

" Testing comments
set nocompatible

" Testing comments
set number
于 2013-10-16T17:31:06.473 回答