我的.vimrc
中有一行超过80个字符的行:
autocmd FileType python set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class,with
我觉得这很烦人,所以我想将其分成多行,但是我不知道该怎么做。我尝试了
\
,因为它在Python和Bourne shell中起到了作用,但是显然这在Vim中不是有效的语法:autocmd FileType python set smartindent \
cinwords=if,elif,else,for,while,try,except,finally,def,class,with
给
E492: Not an editor command
谁能告诉我如何分割这条线?
(如果有人可以告诉我如何添加到
cinwords
而不是将其完全重置,则奖励点;我要实现的唯一目的是向其添加with
关键字。) 最佳答案
autocmd FileType python set smartindent
\ cinwords+=with
关于vim - 如何在.vimrc文件中分割长行?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10831565/