mirror of
https://github.com/scopatz/nanorc
synced 2024-11-06 17:50:01 +01:00
bba53c3940
Duplicate syntax definition names may cause problems. Since nano comes with predefined all-lowercase syntax definitions, we use uppercase letters everywhere to reduce the risk of future conflicts
27 lines
570 B
Plaintext
27 lines
570 B
Plaintext
## SaltStack files (*.sls)
|
|
##
|
|
|
|
syntax "Salt" "\.sls$"
|
|
|
|
# Anything ending in a colon (:), including things that start with a dash (-)
|
|
color blue "^[^ -].*:$"
|
|
color blue ".*:"
|
|
# Except for salt:// URLs
|
|
color white "salt:"
|
|
|
|
# Numbers, etc
|
|
color red "/*[0-9]/*"
|
|
color red "\<(True|False)\>"
|
|
|
|
# Anything between two single quotes
|
|
color green ""(\\.|[^"])*"|'(\\.|[^'])*'"
|
|
|
|
# Matching keywords
|
|
color yellow "\<(grain|grains|compound|pcre|grain_pcre|list|pillar)\>"
|
|
|
|
# Comments
|
|
color brightblack "^#.*"
|
|
|
|
# Logic keywords
|
|
color magenta "\<(if|elif|else|or|not|and|endif|end)\>"
|