Add C tags to the taglist plugin (#188)

Added tags for:
 - Including stdio.h
 - `include` statements
 - The `main` function
 - Comments and multi-line comments
 - `printf` statements
This commit is contained in:
Nic 2018-02-19 06:52:10 -05:00 committed by Clement Lefebvre
parent 4c813f2c7f
commit cc493b9b9b
1 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<TagList xmlns="http://xed.sourceforge.net/some-location">
<TagGroup _name="C - Tags" sort="true">
<Tag name="STDIO">
<Begin>#include &lt;stdio.h&gt;</Begin>
</Tag>
<Tag name="include">
<Begin>#include </Begin>
</Tag>
<Tag name="main">
<Begin>int main() {
</Begin>
<End>
}</End>
</Tag>
<Tag name="Comment">
<Begin>/* </Begin>
<End> */</End>
</Tag>
<Tag name="Multi-Line Comment">
<Begin>/*
* </Begin>
<End>
*/</End>
</Tag>
<Tag name="printf">
<Begin>printf("</Begin>
<End>");</End>
</Tag>
</TagGroup>
</TagList>