gpt4 book ai didi

regex - 在 Atom 包中,如何在语法中重叠模式?

转载 作者:行者123 更新时间:2023-12-04 08:41:41 27 4
gpt4 key购买 nike

我想走得更远,设计更多的东西。例如,我想设置以下样式:

setting1 = 4
setting2 = 192.168.1.12
etc...

我想为 = 左侧的所有内容设置样式蓝色和正确的紫色。

问题是atom正则表达式引擎不支持负前瞻或正前瞻 .因此,我尝试使用 beginend指令,但这仍然不起作用。换句话说,我已经尝试过:
{
# 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
},

所以基本上,我需要它看起来像这样:

enter image description here

有任何想法吗?

最佳答案

我想出了这个解决方案:(reules.cson)

'scopeName': 'source.conf'
'name': 'CONF'
'fileTypes': ['CONF']
'patterns': [
{
# equality
'match': '(?x) ^ ([^=;]+) (=) (.+?)\\n'
'captures':
'1' :
'name' : 'blue'
'2' :
'name' : 'yellow'
'3' :
'name' : 'purple'
}

]

您可以为每个捕获设置不同的样式。

关于regex - 在 Atom 包中,如何在语法中重叠模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39030371/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com