micro/runtime/syntax/yaml.yaml

36 lines
839 B
YAML
Raw Normal View History

filetype: yaml
detect:
filename: "\\.ya?ml$"
header: "%YAML"
rules:
- type: "(^| )!!(binary|bool|float|int|map|null|omap|seq|set|str) "
- constant: "\\b(YES|yes|Y|y|ON|on|TRUE|True|true|NO|no|N|n|OFF|off|FALSE|False|false)\\b"
- statement: "(:[[:space:]]|\\[|\\]|:[[:space:]]+[|>]|^[[:space:]]*- )"
- identifier: "[[:space:]][\\*&][A-Za-z0-9]+"
2017-03-27 00:45:58 +03:00
- type: "[-.\\w]+:"
- statement: ":"
- special: "(^---|^\\.\\.\\.|^%YAML|^%TAG)"
- constant.string:
start: "(^| )\""
end: "\""
2017-03-29 16:45:16 +03:00
skip: "\\\\."
rules:
- constant.specialChar: "\\\\."
- constant.string:
start: "(^| )'"
end: "'"
skip: "(\\\\.)|('')"
rules:
- constant.specialChar: "\\\\."
- comment:
start: "#"
end: "$"
rules: []