我想更进一步,设计更多东西.例如,我想设置以下样式:
setting1 = 4 setting2 = 192.168.1.12 etc...
我想在=蓝色的左边和右边紫色的一切都设置样式.
问题是原子正则表达式引擎不支持负向前瞻或正向前瞻.结果,我尝试使用开始和结束指令,但仍然不起作用.换句话说,我尝试过:
{ # section reference 'begin': '^\\s*.*?=' # match a line that contains an = sign 'end': '.+$' # continue until the end of the line 'match': '^\\s*[^=]*' #only match everything that is not an equal sign 'name': 'blue' #style it with the blue style },
所以基本上,我需要它看起来像这样:
有任何想法吗?
我想出了这个解决方案:(reules.cson)
原文链接:https://www.f2er.com/regex/356905.html'scopeName': 'source.conf' 'name': 'CONF' 'fileTypes': ['CONF'] 'patterns': [ { # equality 'match': '(?x) ^ ([^=;]+) (=) (.+?)\\n' 'captures': '1' : 'name' : 'blue' '2' : 'name' : 'yellow' '3' : 'name' : 'purple' } ]
您可以以不同的方式设置每个捕