如何让 Vim 不破坏 DocBlock 注释?
/**
* Example Comment
*/
当我在 Comment
之后按 Enter 键时,Vim 自动缩进,但使光标与 *
字符对齐。如何让 Vim 添加 *
和空格,以便我的注释与 E
对齐?
/**
* Example Comment
*/
When I press enter after Comment
Vim autoindents but leaves the cursor lined up with the *
characters. How can I get Vim to add the *
and a space so that my comment lines up with the E
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要修改
formatoptions
(简称fo
)Vim 选项的值,如下所示:r
选项启用插入中的行为模式;o
在正常情况下使用 o 或 O 切换到插入时启用它。尝试 Vim 的内置帮助了解详细信息:You will want to modify the value of the
formatoptions
(short namefo
) Vim option, like this:The
r
option enables the behavior in insert mode;o
enables it when using o or O in normal to switch into insert. Try Vim's builtin help for details: