diff options
author | Max Christian Pohle | 2017-11-10 01:23:11 +0100 |
---|---|---|
committer | Max Christian Pohle | 2017-11-10 01:23:11 +0100 |
commit | 3b3e7cb638668da10cdec8b2efc7e113f1ee9080 (patch) | |
tree | bc4dd245c31e60acd92e17fd16cf04968c9ae96a /ftplugin | |
parent | 51b038e5160d7a6774171c25e32a3cb31d48b798 (diff) | |
download | vim-3b3e7cb638668da10cdec8b2efc7e113f1ee9080.tar.bz2 vim-3b3e7cb638668da10cdec8b2efc7e113f1ee9080.zip |
Optical improvements (symbols and location of filename)
Diffstat (limited to 'ftplugin')
-rw-r--r-- | ftplugin/c.vim | 6 |
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 @@ | |||
1 | set number | 1 | set number |
2 | 2 | ||
3 | syntax match defines "\<[A-Z][A-Z0-9_]*\>" | 3 | syntax match Define "\<[A-Z][A-Z0-9_]*\>" |
4 | syntax 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 | ||
7 | highlight! link defines Special | ||