如何避免使用vim cindent缩进注释块?

时间:2011-03-24 15:37:28

标签: vim indentation

我有一个评论栏,例如:

/*++
 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不要缩进评论栏吗?

1 个答案:

答案 0 :(得分:1)

不,我不认为这是可能的。

如果评论缩进对您很重要,我会考虑将评论样式(mb:*中的'comments')切换为:

/*
 * Blah:
 *   blah
 * Foo:
 *   foo
 */