如何在vim中以特定方式配置缩进?

发布于 2024-08-09 20:02:53 字数 157 浏览 3 评论 0原文

如果我输入以下内容

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

无悔心 2024-08-16 20:02:53
:set cino=(0

有关 cinoption 的更多信息,请参阅此处。

:set cino=(0

For more about cinoption see here.

夜访吸血鬼 2024-08-16 20:02:53

以下命令将使用空格而不是制表符将代码缩进适当的量,并在开始后自动缩进。这些命令可以添加到您的 .vimrc 文件中。

set expandtab
set tabstop=2
set shiftwidth=2
set autoindent
set smartindent

来源: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.

set expandtab
set tabstop=2
set shiftwidth=2
set autoindent
set smartindent

Source: http://drupal.org/node/29325

山人契 2024-08-16 20:02:53

我建议您还阅读 smartindent 和 autoindent 设置。

I'd suggest you also read up on the smartindent and autoindent settings.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文