Browse Source

Add more missing syntax groups

pull/10/head
Josh Dick 9 years ago
parent
commit
b16ba4c99c
  1. 12
      colors/onedark.vim

12
colors/onedark.vim

@ -1,6 +1,6 @@
" Vim Color File
" Name: onedark.vim
" Version: 1.4
" Version: 1.41
" Maintainer: https://github.com/joshdick/onedark.vim/
" License: The MIT License (MIT)
" Based On: https://github.com/MaxSt/FlatColor/
@ -114,12 +114,12 @@ call s:h("Exception", { "fg": s:purple }) " try, catch, throw
call s:h("PreProc", { "fg": s:yellow }) " generic Preprocessor
call s:h("Include", { "fg": s:blue }) " preprocessor #include
call s:h("Define", { "fg": s:purple }) " preprocessor #define
call s:h("Macro", {}) " same as Define
call s:h("PreCondit", {}) " preprocessor #if, #else, #endif, etc.
call s:h("Macro", { "fg": s:purple }) " same as Define
call s:h("PreCondit", { "fg": s:yellow }) " preprocessor #if, #else, #endif, etc.
call s:h("Type", { "fg": s:yellow }) " int, long, char, etc.
call s:h("StorageClass", {}) " static, register, volatile, etc.
call s:h("Structure", {}) " struct, union, enum, etc.
call s:h("Typedef", {}) " A typedef
call s:h("StorageClass", { "fg": s:yellow }) " static, register, volatile, etc.
call s:h("Structure", { "fg": s:yellow }) " struct, union, enum, etc.
call s:h("Typedef", { "fg": s:yellow }) " A typedef
call s:h("Special", { "fg": s:blue }) " any special symbol
call s:h("SpecialChar", {}) " special character in a constant
call s:h("Tag", {}) " you can use CTRL-] on this

Loading…
Cancel
Save