我正在为 DSL 编写 vim 语法高亮,其中函数遵循以下格式:
# A function with no arguments
<function>
# A function with arguments
<function(arg1, arg2)>
# A function with text
<function block of normal text>
# A function with args and text
<function(arg1,arg2) text>
# Line breaks are allowed pretty much everywhere.
<function(
arg1,
arg2)
a block of text>
# As is nesting
<function(<subfunc>) Some text with <another(subfunction) etc.>>
# Backslash escape
<function(single arg with a comma: "\,") contained bracket between quotes: "\>">
它是一种文本处理语言(想想类固醇降价),所以文本块必须是非限制性的。
我在为此编写 vim 语法文件时遇到了很多麻烦。
我可以
syn region myFunction start='<' end='>' skip='\\>'
syn region myArgs start='(' end=')' skip='\\)'
但myFunction
不能包含myArgs
,因为在以下示例中错误地突出显示了括号:
<function(arg) some text (with parenthesis) that aren't arguments>
具体来说,我希望函数名称和参数列表仅在该区域的开头突出显示。然而,我做不到
syn region myFunction start='<(regex to match name and arg list)' ...
因为,即使regex to match name and arg list
不可怕,这也破坏了我语法高亮嵌套函数的能力。
我想要的是类似于a 的nextgroup
东西,但我找不到。start
syntax region
这可能吗?我如何在 vimscript 中执行此操作?