缩进注释以匹配vim中的代码

时间:2008-10-10 13:15:09

标签: vim

我在vim中完成所有编码并且对它非常满意(所以,请不要“使用不同的编辑器”响应),但是因为smartindent功能想要不缩进以#开头的注释而持续烦恼所有。例如,我想要

  # Do something
  $x = $x + 1;
  if ($y) {
    # Do something else
    $y = $y + $z;
  }

而不是vim的首选

# Do something
  $x = $x + 1;
  if ($y) {
# Do something else
    $y = $y + $z;
  }

我能够阻止将评论发送到线路开头的唯一方法是在点击#之前插入和删除线路上的字符(每次都要记住要做的麻烦)或转弯完全关闭smartindent(在打开/关闭括号时失去自动缩进增加/减少)。

如何设置vim来维护我的注释缩进而不是将它们发送到行的开头?

4 个答案:

答案 0 :(得分:45)

看起来你在用Perl进行编码。确保在.vimrc中设置以下内容:

filetype plugin indent on
syntax enable

这些将告诉Vim在打开缓冲区时设置文件类型并配置缩进和语法突出显示。无需显式设置smartindent,因为Vim包含的Perl语法文件将自动设置它(以及任何其他Perl特定的自定义)。


注意:在set smartindent中设置set autoindent和/或~/.vimrc可能会阻止解决方案正常运行。如果您遇到问题,请寻找它们。

答案 1 :(得分:17)

如果您使用的是“smartindent”缩进选项,则可以在“:help smartindent”VIM文档中解释您的问题:

    When typing '#' as the first character in a new line, the indent for
    that line is removed, the '#' is put in the first column.  The indent
    is restored for the next line.  If you don't want this, use this
    mapping: ":inoremap # X^H#", where ^H is entered with CTRL-V CTRL-H.
    When using the ">>" command, lines starting with '#' are not shifted
    right.

我使用“smartindent”并且可以确认所描述的修复对我有用。它通过键入“X”替换键入“#”来欺骗VIM,然后按下退格键,然后再次键入“#”。您可以自己手动尝试,看看它不会触发自动缩小。

答案 2 :(得分:9)

可以通过将以下内容放在_vimrc文件中来解决此问题。

set cindent
set cinkeys=0{,0},!^F,o,O,e " default is: 0{,0},0),:,0#,!^F,o,O,e

More info ...

答案 3 :(得分:7)

我认为“smartindent”是为C设计的,所以它认为“#”是预处理器指令的开始而不是注释。我不知道它的解决方案,除非你键入一个空格,然后是退格键,然后“#”就不会这样做。