Compare commits

...

4 Commits

Author SHA1 Message Date
Josh Dick
425443f2da Remove custom Dart highlight group 2020-07-22 00:47:21 -04:00
Josh Dick
0fdfdf3189 Merge branch 'master' into dartHighlighting 2020-07-18 00:10:56 -04:00
Josh Dick
ed76f2570e Fix a typo. 2020-07-18 00:10:37 -04:00
Josh Dick
334f971863 Add Dart highlighting support
Implements #226.
2020-07-07 11:58:07 -04:00

View File

@@ -297,6 +297,17 @@ call s:h("cssSelectorOp", { "fg": s:purple })
call s:h("cssSelectorOp2", { "fg": s:purple })
call s:h("cssTagName", { "fg": s:red })
" Dart
call s:h("dartTypeDef", { "fg": s:red })
call s:h("dartClassDecl", { "fg": s:red })
call s:h("dartInterpolation", { "fg": s:blue })
highlight link dartLibrary Include
call s:h("dartSdkClass", { "fg": s:cyan })
call s:h("dartStorageClass", { "fg": s:dark_red })
highlight link dartExceptions Exception
highlight link dartStatement Statement
call s:h("dartConstant", { "fg": s:dark_yellow })
" Fish Shell
call s:h("fishKeyword", { "fg": s:purple })
call s:h("fishConditional", { "fg": s:purple })