每当我想使用 macVim 在我的 python 脚本中使用续行时,我都会收到以下格式:
a = one,\
two,\
three
代替:
a = one,\
two,\
three
我已经浏览help
了一遍,但无法找到导致 macVim 在使用续行时附加一个额外选项卡的确切原因。
注意:我的 .vimrc 文件中目前有以下内容:
set tabstop=4
set shiftwidth=4
set expandtab
set softtabstop=4