如何将项目符号作为vim中的空白字符处理?

时间:2012-10-16 07:16:49

标签: vim text indentation

中使用自动格式选项时
set formatoptions=taw

在vim中,以子弹字符开头的段落将形成如下:

• This is an
item of a list.

如何告诉vim将行首的“•”视为要获取的空白字符

• This is an
  item of a list.

1 个答案:

答案 0 :(得分:3)

您可以设置comments选项(需要:set fo+=cq):

:set fo+=cq
:set com+=fb:•

您还可以设置formatlistpat选项(需要:set fo+=n):

:set fo+=n
:set flp=^\\s*•\\s*

注意:使用\\获取\