Add colour for JSON boolean and number (#48)

This commit is contained in:
Simon Smith
2016-08-23 23:15:32 +01:00
committed by Josh Dick
parent ba78df2182
commit ddd6322a5b

View File

@@ -303,6 +303,8 @@ call s:h("javascriptVariable", { "fg": s:purple })
" JSON
call s:h("jsonCommentError", { "fg": s:white })
call s:h("jsonKeyword", { "fg": s:red })
call s:h("jsonBoolean", { "fg": s:dark_yellow })
call s:h("jsonNumber", { "fg": s:dark_yellow })
call s:h("jsonQuote", { "fg": s:white })
call s:h("jsonMissingCommaError", { "fg": s:red, "gui": "reverse" })
call s:h("jsonNoQuotesError", { "fg": s:red, "gui": "reverse" })