From cc493b9b9bc39dc6b331d05a1a615bf55cec0373 Mon Sep 17 00:00:00 2001 From: Nic Date: Mon, 19 Feb 2018 06:52:10 -0500 Subject: [PATCH] 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 --- 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 0000000..28033c0 --- /dev/null +++ b/plugins/taglist/C.tags.xml.in @@ -0,0 +1,38 @@ + + + + + + #include <stdio.h> + + + + #include + + + + int main() { + + +} + + + + /* + */ + + + + /* + * + + */ + + + + printf(" + "); + + + +