Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
/** * Example Comment */
当我在CommentVim 自动缩进后按 Enter 键但光标与*字符对齐时。如何让 Vim 添加*和 空格,以便我的注释与E?
Comment
*
E
您将需要修改formatoptions(short name fo) Vim 选项的值,如下所示:
formatoptions
fo
:set fo+=or
该r选项启用插入模式下的行为;o在使用o或O正常切换到插入时启用它。尝试 Vim 的内置帮助以获取详细信息:
r
o
:help formatoptions