aboutsummaryrefslogtreecommitdiff
path: root/ftplugin/c.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ftplugin/c.vim')
-rw-r--r--ftplugin/c.vim6
1 files changed, 4 insertions, 2 deletions
diff --git a/ftplugin/c.vim b/ftplugin/c.vim
index 8b0f39a..12ba001 100644
--- a/ftplugin/c.vim
+++ b/ftplugin/c.vim
@@ -1,7 +1,9 @@
1set number 1set number
2 2
3syntax match defines "\<[A-Z][A-Z0-9_]*\>" 3syntax match Define "\<[A-Z][A-Z0-9_]*\>"
4syntax match Todo "\/\/ @[A-Z]*\:.*$"
5
4" syntax match cType "struct\s+[A-Za-z0-9_]+\>" 6" syntax match cType "struct\s+[A-Za-z0-9_]+\>"
5" syn clear cStructure 7" syn clear cStructure
8" highlight! link defines Special
6 9
7highlight! link defines Special
..