mirror of
https://github.com/zyedidia/micro.git
synced 2024-11-04 19:23:28 +03:00
433879046e
This allows more complex detection upon regex rules for a certain amount of lines.
35 lines
878 B
YAML
35 lines
878 B
YAML
filetype: yaml
|
|
|
|
detect:
|
|
filename: "\\.ya?ml$"
|
|
signature: "%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]+"
|
|
- type: "[-.\\w]+:"
|
|
- statement: ":"
|
|
- special: "(^---|^\\.\\.\\.|^%YAML|^%TAG)"
|
|
|
|
- constant.string:
|
|
start: "(^| )\""
|
|
end: "\""
|
|
skip: "\\\\."
|
|
rules:
|
|
- constant.specialChar: "\\\\."
|
|
|
|
- constant.string:
|
|
start: "(^| )'"
|
|
end: "'"
|
|
skip: "(\\\\.)|('')"
|
|
rules:
|
|
- constant.specialChar: "\\\\."
|
|
|
|
- comment:
|
|
start: "#"
|
|
end: "$"
|
|
rules:
|
|
- todo: "(TODO|XXX|FIXME):?"
|