micro/runtime/syntax/inputrc.yaml
Yevhen Babiichuk (DustDFG) 426e6c600f
Fix trailing spaces/tabs in yaml syntax files (#3200)
Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
2024-03-22 17:56:09 +01:00

15 lines
399 B
YAML

filetype: inputrc
detect:
filename: "inputrc$"
rules:
- constant.bool.false: "\\b(off|none)\\b"
- constant.bool.true: "\\bon\\b"
- preproc: "\\bset|\\$include\\b"
- constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'"
- constant.specialChar: "\\\\.?"
- comment: "(^|[[:space:]])#([^{].*)?$"
- indent-char.whitespace: "[[:space:]]+$"
- indent-char: " + +| + +"