Add packaging and release automation
This commit is contained in:
parent
2a3b58c44e
commit
8e51e47587
1082 changed files with 356427 additions and 0 deletions
51
vendor/github.com/alecthomas/chroma/v2/lexers/embedded/brainfuck.xml
generated
vendored
Normal file
51
vendor/github.com/alecthomas/chroma/v2/lexers/embedded/brainfuck.xml
generated
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
<lexer>
|
||||
<config>
|
||||
<name>Brainfuck</name>
|
||||
<alias>brainfuck</alias>
|
||||
<alias>bf</alias>
|
||||
<filename>*.bf</filename>
|
||||
<filename>*.b</filename>
|
||||
<mime_type>application/x-brainfuck</mime_type>
|
||||
</config>
|
||||
<rules>
|
||||
<state name="common">
|
||||
<rule pattern="[.,]+">
|
||||
<token type="NameTag"/>
|
||||
</rule>
|
||||
<rule pattern="[+-]+">
|
||||
<token type="NameBuiltin"/>
|
||||
</rule>
|
||||
<rule pattern="[<>]+">
|
||||
<token type="NameVariable"/>
|
||||
</rule>
|
||||
<rule pattern="[^.,+\-<>\[\]]+">
|
||||
<token type="Comment"/>
|
||||
</rule>
|
||||
</state>
|
||||
<state name="root">
|
||||
<rule pattern="\[">
|
||||
<token type="Keyword"/>
|
||||
<push state="loop"/>
|
||||
</rule>
|
||||
<rule pattern="\]">
|
||||
<token type="Error"/>
|
||||
</rule>
|
||||
<rule>
|
||||
<include state="common"/>
|
||||
</rule>
|
||||
</state>
|
||||
<state name="loop">
|
||||
<rule pattern="\[">
|
||||
<token type="Keyword"/>
|
||||
<push/>
|
||||
</rule>
|
||||
<rule pattern="\]">
|
||||
<token type="Keyword"/>
|
||||
<pop depth="1"/>
|
||||
</rule>
|
||||
<rule>
|
||||
<include state="common"/>
|
||||
</rule>
|
||||
</state>
|
||||
</rules>
|
||||
</lexer>
|
||||
Loading…
Add table
Add a link
Reference in a new issue