如何让 Vim 不破坏 DocBlock 注释?

发布于 2024-11-27 23:24:00 字数 189 浏览 2 评论 0原文

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

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

发布评论

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

评论(1

ˇ宁静的妩媚 2024-12-04 23:24:00

您需要修改 formatoptions (简称 fo)Vim 选项的值,如下所示:

:set fo+=or

r 选项启用插入中的行为模式; o 在正常情况下使用 oO 切换到插入时启用它。尝试 Vim 的内置帮助了解详细信息:

:help formatoptions

You will want to modify the value of the formatoptions (short name fo) Vim option, like this:

:set fo+=or

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:

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