Add packaging and release automation
This commit is contained in:
parent
2a3b58c44e
commit
8e51e47587
1082 changed files with 356427 additions and 0 deletions
37
vendor/github.com/alecthomas/chroma/v2/lexers/embedded/pacmanconf.xml
generated
vendored
Normal file
37
vendor/github.com/alecthomas/chroma/v2/lexers/embedded/pacmanconf.xml
generated
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<lexer>
|
||||
<config>
|
||||
<name>PacmanConf</name>
|
||||
<alias>pacmanconf</alias>
|
||||
<filename>pacman.conf</filename>
|
||||
</config>
|
||||
<rules>
|
||||
<state name="root">
|
||||
<rule pattern="#.*$">
|
||||
<token type="CommentSingle"/>
|
||||
</rule>
|
||||
<rule pattern="^\s*\[.*?\]\s*$">
|
||||
<token type="Keyword"/>
|
||||
</rule>
|
||||
<rule pattern="(\w+)(\s*)(=)">
|
||||
<bygroups>
|
||||
<token type="NameAttribute"/>
|
||||
<token type="Text"/>
|
||||
<token type="Operator"/>
|
||||
</bygroups>
|
||||
</rule>
|
||||
<rule pattern="^(\s*)(\w+)(\s*)$">
|
||||
<bygroups>
|
||||
<token type="Text"/>
|
||||
<token type="NameAttribute"/>
|
||||
<token type="Text"/>
|
||||
</bygroups>
|
||||
</rule>
|
||||
<rule pattern="(\$repo|\$arch|%o|%u)\b">
|
||||
<token type="NameVariable"/>
|
||||
</rule>
|
||||
<rule pattern=".">
|
||||
<token type="Text"/>
|
||||
</rule>
|
||||
</state>
|
||||
</rules>
|
||||
</lexer>
|
||||
Loading…
Add table
Add a link
Reference in a new issue