mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
33 lines
720 B
YAML
33 lines
720 B
YAML
filetype: vi
|
|
|
|
detect:
|
|
filename: "(^|/|\\.)(ex|vim)rc$|\\.vim"
|
|
|
|
rules:
|
|
- identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]"
|
|
- statement: "\\b([nvxsoilc]?(nore|un)?map|[nvlx]n|[ico]?no|[cilovx][um]|s?unm)\\b"
|
|
- statement: "\\b(snor|nun|nm|set|if|endif|let|unlet)\\b"
|
|
- statement: "[!&=]"
|
|
- constant.number: "\\b[0-9]+\\b"
|
|
|
|
- constant.string:
|
|
start: "\""
|
|
end: "\""
|
|
skip: "\\\\."
|
|
rules:
|
|
- constant.specialChar: "\\\\."
|
|
|
|
- constant.string:
|
|
start: "'"
|
|
end: "'"
|
|
skip: "\\\\."
|
|
rules:
|
|
- constant.specialChar: "\\\\."
|
|
|
|
- constant.comment:
|
|
start: "\""
|
|
end: "$"
|
|
rules: []
|
|
|
|
|