如何避免使用 vim cindent 缩进注释块?
我有一个注释块,例如:
/*++
Blah:
blah
Foo:
foo
--*/
我正在使用以下 vim cindent 选项:
set shiftwidth=2
set tabstop=2
set cindent
set cino=g0,+0,(0,W2
如果我选择该注释块并使用 =
缩进,vim 会将其变成:
/*++
Blah:
blah
Foo:
foo
--*/
我可以告诉 vim cindent 不要这样做缩进注释块?
I have a comment block such as:
/*++
Blah:
blah
Foo:
foo
--*/
And I'm using the following vim cindent options:
set shiftwidth=2
set tabstop=2
set cindent
set cino=g0,+0,(0,W2
If I select that comment block and indent it with =
, vim turns it into:
/*++
Blah:
blah
Foo:
foo
--*/
Can I tell vim cindent not to indent comment blocks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,我认为这是不可能的。
如果注释缩进对您很重要,我会考虑将注释样式(在
'comments'
中使用mb:*
)切换为:No, I don't think that's possible.
If indent of comments is important to you, I would consider switching the comment style (with
mb:*
in'comments'
) to this: