在
vim中,我可以输入这样一行:
- When in the Course of human events it becomes necessary for one people to dissolve the political bands which have connected them with another ...
和vim将包装文本,使其与短划线的右侧对齐.但是如果我用星号试试这个,那就是这样:
* When in the Course of human events it becomes necessary for one people to dissolve the political bands which have connected them with another ...
这是使用注释设置完成的(请参阅:help’reviews’和:help format-comments).
原文链接:https://www.f2er.com/bash/384793.html您需要添加的设置是fb:*,它表示有一个以*开头的注释类型,*后面必须跟一个空白,并且只在注释的第一行. Vim处理剩下的事情.但请注意,默认设置包括*作为多行C注释的中间位置,因此您需要禁用此功能.
如果连字符前缀和带星号前缀的行是您想要像这样工作的唯一行,请执行以下操作:
set comments=fb:-,fb:*
或者,根据需要调整默认注释设置:: set comments?显示当前设置和:help format-comments解释了它的含义.
如果您希望它特定于文件类型,请在〜/ .vim / ftplugin(或Windows上的vimfiles)中创建一个文件,文件名为extension.vim(例如.txt文件的txt.vim).在这个文件中:
setlocal comments=fb:-,fb:*