From 98e7d862accdcde010406467cbfa5391a478ef39 Mon Sep 17 00:00:00 2001 From: Nic Q Date: Tue, 21 Nov 2017 00:05:22 -0500 Subject: [PATCH] Add C tags to the taglist plugin Added tags for: - Including stdio.h - `include` statements - The `main` function - Comments and multi-line comments - `printf` statements --- plugins/taglist/C.tags.xml.in | 38 +++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 plugins/taglist/C.tags.xml.in diff --git a/plugins/taglist/C.tags.xml.in b/plugins/taglist/C.tags.xml.in new file mode 100644 index 00000000..28033c0a --- /dev/null +++ b/plugins/taglist/C.tags.xml.in @@ -0,0 +1,38 @@ + + + + + + #include <stdio.h> + + + + #include + + + + int main() { + + +} + + + + /* + */ + + + + /* + * + + */ + + + + printf(" + "); + + + +