Initial dumb stuff

This commit is contained in:
2024-08-02 17:03:49 -03:00
parent 1699024e8a
commit 925c570bf3
241 changed files with 37373 additions and 0 deletions

52
lexers/diff.xml Normal file
View File

@ -0,0 +1,52 @@
<lexer>
<config>
<name>Diff</name>
<alias>diff</alias>
<alias>udiff</alias>
<filename>*.diff</filename>
<filename>*.patch</filename>
<mime_type>text/x-diff</mime_type>
<mime_type>text/x-patch</mime_type>
<ensure_nl>true</ensure_nl>
</config>
<rules>
<state name="root">
<rule pattern=" .*\n">
<token type="Text"/>
</rule>
<rule pattern="\d+(,\d+)?(a|c|d)\d+(,\d+)?\n">
<token type="GenericSubheading"/>
</rule>
<rule pattern="---\n">
<token type="GenericStrong"/>
</rule>
<rule pattern="&lt; .*\n">
<token type="GenericDeleted"/>
</rule>
<rule pattern="&gt; .*\n">
<token type="GenericInserted"/>
</rule>
<rule pattern="\+.*\n">
<token type="GenericInserted"/>
</rule>
<rule pattern="-.*\n">
<token type="GenericDeleted"/>
</rule>
<rule pattern="!.*\n">
<token type="GenericStrong"/>
</rule>
<rule pattern="@.*\n">
<token type="GenericSubheading"/>
</rule>
<rule pattern="([Ii]ndex|diff).*\n">
<token type="GenericHeading"/>
</rule>
<rule pattern="=.*\n">
<token type="GenericHeading"/>
</rule>
<rule pattern=".*\n">
<token type="Text"/>
</rule>
</state>
</rules>
</lexer>