我决定更多地了解
vim及其语法高亮.
为其他人使用示例,我正在为Markdown创建自己的语法文件.我看过 mkd.vim,也有这个问题.
我的问题是在列表项和代码块突出显示之间.
为其他人使用示例,我正在为Markdown创建自己的语法文件.我看过 mkd.vim,也有这个问题.
我的问题是在列表项和代码块突出显示之间.
>第一行是空白
>第二行以至少4个空格或1个选项卡开始
>块用空行完成
例:
Regular text this is code,monospaced and left untouched by markdown another line of code Regular Text
我的Vim语法代码块:
syn match mkdCodeBlock /\(\s\{4,}\|\t\{1,}\).*\n/ contained nextgroup=mkdCodeBlock hi link mkdCodeBlock comment
无序列表项目definition:
>第一行是空白
>第二行以[ – *]开头,后跟一个空格
>列表用空行,然后是正常(非列表)行完成
>在行项目之间可以添加任意数量的空白行
>子列表由缩进(4个空格或1个选项卡)指定
>列表项之后的一行正常文本作为该列表项的延续
例:
Regular text - item 1 - sub item 1 - sub item 2 - item 2 this is part of item 2 so is this - item 3,still in the same list - sub item 1 - sub item 2 Regular text,list ends above
我的Vim语法无序列表项定义(我只突出显示[ – *]):
syn region mkdListItem start=/\s*[-*+]\s\+/ matchgroup=pdcListText end=".*" contained nextgroup=mkdListItem,mkdListSkipNL contains=@Spell skipnl syn match mkdListSkipNL /\s*\n/ contained nextgroup=mkdListItem,mkdListSkipNL skipnl hi link mkdListItem operator
这是一个破坏我的语法突出显示的例子:
Regular text - Item 1 - Item 2 part of item 2 - these 2 line should be highlighted as a list item - but they are highlighted as a code block
我目前无法弄清楚如何让突出显示工作方式也是如此
忘记添加在下面列出的两个规则中使用的“全局”语法规则.它是确保它们以空行开头.
syn match mkdBlankLine /^\s*\n/ nextgroup=mkdCodeBlock,mkdListItem transparent
另一个注意事项:我应该更加清楚在我的语法文件中,List规则出现在Blockquote规则之前
只需确保mkdListItem的定义是在定义mkdCodeBlock之后,像这样:
原文链接:https://www.f2er.com/regex/356673.htmlsyn match mkdCodeBlock /\(\s\{4,}\).*\n/ contained nextgroup=mkdCodeBlock hi link mkdCodeBlock comment syn region mkdListItem start=/\s*[-*+]\s\+/ matchgroup=pdcListText end=".*" contained nextgroup=mkdListItem,mkdListSkipNL skipnl hi link mkdListItem operator syn match mkdBlankLine /^\s*\n/ nextgroup=mkdCodeBlock,mkdListItem transparent
Vim文档说:help:syn-define:
“如果一个以上的项目在同一个位置匹配,那就是那个定义了最后的胜利.因此,您可以覆盖以前定义的语法项使用与相同文本匹配的项目.但一个关键字总是在之前匹配或区域.一个具有匹配案例的关键字总是在a之前无关情况的关键词“.