Merge pull request #170 from yochem/master

[yaml] Regarding comment from @jc-iacono
This commit is contained in:
Anthony Scopatz 2018-05-05 06:41:02 -04:00 committed by GitHub
commit a9e8d9d1e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
syntax yaml "\.ya?ml"
syntax "yaml" "\.ya?ml$"
comment "#"
header "^---" "%YAML"
@ -11,11 +11,11 @@ color red "(^|\s+).*+\s*:(\s|$)"
# Special values
color yellow "[:-]\s+(true|false|null)\s*$"
color yellow "[:-]\s+[0-9]+\.?[0-9]*(\s*($|#))"
color yellow "(^| )!!(binary|bool|float|int|map|null|omap|seq|set|str) "
color yellow "(^| )!!(binary|bool|float|int|map|null|omap|seq|set|str) "
# Separator
color brightwhite "^\s+-"
color brightwhite ":(\s|\t|$)"
color normal "^\s+-"
color normal ":(\s|\t|$)"
# Comments
color white "(^|[[:space:]])#.*$"