aboutsummaryrefslogtreecommitdiff
path: root/ftplugin
diff options
context:
space:
mode:
authorMax Christian Pohle2017-11-10 01:23:11 +0100
committerMax Christian Pohle2017-11-10 01:23:11 +0100
commit3b3e7cb638668da10cdec8b2efc7e113f1ee9080 (patch)
treebc4dd245c31e60acd92e17fd16cf04968c9ae96a /ftplugin
parent51b038e5160d7a6774171c25e32a3cb31d48b798 (diff)
downloadvim-3b3e7cb638668da10cdec8b2efc7e113f1ee9080.tar.bz2
vim-3b3e7cb638668da10cdec8b2efc7e113f1ee9080.zip
Optical improvements (symbols and location of filename)
Diffstat (limited to 'ftplugin')
-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
..