123456789101112131415161718192021222324252627 |
-
-
-
-
-
-
-
-
- if exists("b:current_syntax")
- finish
- endif
-
- syn match iniSection skipwhite contains=iniRule "^\[.\+\]$"
-
- syn match iniRule "^[^=:]\{-1,}="
- syn match iniRule "^[^:=]\{-1,}:"
-
- syn match iniComment skipwhite "^[#;].*"
-
-
-
-
- hi def link iniSection Keyword
- hi def link iniRule Identifier
- hi def link iniComment Comment
-
- let b:current_syntax = "ini"
|