【发布时间】:2011-10-19 15:50:21
【问题描述】:
/**
* Example Comment
*/
当我在Comment Vim 自动缩进后按 Enter 键,但光标与 * 字符对齐。如何让 Vim 添加 * 和一个空格,以便我的评论与 E 对齐?
【问题讨论】:
标签: vim comments autoformatting
/**
* Example Comment
*/
当我在Comment Vim 自动缩进后按 Enter 键,但光标与 * 字符对齐。如何让 Vim 添加 * 和一个空格,以便我的评论与 E 对齐?
【问题讨论】:
标签: vim comments autoformatting
您需要修改formatoptions(短名称fo)Vim 选项的值,如下所示:
:set fo+=or
r 选项启用插入模式下的行为; o 在正常使用 o 或 O 切换到插入时启用它。尝试 Vim 的内置帮助以获取详细信息:
:help formatoptions
【讨论】: