如果我输入以下内容
void main(int blah,
然后按回车键,我想继续这里:
float blah);
我怎样才能做到这一点?
答案 0 :(得分:9)
:set cino=(0
有关cinoption的更多信息,请参阅here.
答案 1 :(得分:1)
以下命令将使用空格而不是制表符缩进代码,并在启动后自动缩进。这些命令可以添加到.vimrc文件中。
set expandtab
set tabstop=2
set shiftwidth=2
set autoindent
set smartindent
答案 2 :(得分:0)
我建议你也阅读smartindent和autoindent设置。