如何在vim中以特定方式配置缩进?
如果我输入以下内容
void main(int blah,
然后按 Enter 键,我想在此处继续:
float blah);
如何实现此目的?
If I type the following
void main(int blah,
and then press enter, I want to continue here:
float blah);
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有关 cinoption 的更多信息,请参阅此处。
For more about cinoption see here.
以下命令将使用空格而不是制表符将代码缩进适当的量,并在开始后自动缩进。这些命令可以添加到您的 .vimrc 文件中。
来源:http://drupal.org/node/29325
The following commands will indent your code the right amount, using spaces rather than tabs and automatically indent after you start. The commands can be added to your .vimrc file.
Source: http://drupal.org/node/29325
我建议您还阅读 smartindent 和 autoindent 设置。
I'd suggest you also read up on the smartindent and autoindent settings.