mirror of
https://github.com/scopatz/nanorc
synced 2024-11-01 07:10:00 +01:00
b5b285fbf9
- Lots of syntax regex are poorly written and did not ends with a '$', which caused them competing with other regex rules.
36 lines
740 B
Plaintext
36 lines
740 B
Plaintext
## Here is a prolog example.
|
|
|
|
syntax "prolog" "\.pl$"
|
|
comment "%"
|
|
|
|
# Reset everything
|
|
color normal ".*"
|
|
|
|
# Integers and floats
|
|
color yellow "(^| |=)[0-9]+\.?[0-9]*"
|
|
|
|
# Variables
|
|
color red "(^|[[:blank:]]|\(|,)[A-Z]+"
|
|
color red "(^|[[:blank:]]|\(|,)_[0-9a-zA-Z_]+($|[[:blank:]]|,|\))"
|
|
|
|
# Anonymous variable '_'
|
|
color yellow "(^|[[:blank:]]|\(|,)_($|[[:blank:]]|,|\))"
|
|
|
|
# Functions
|
|
color cyan "(^|[[:blank:]])\w+\("
|
|
color normal "\(|\)|\[|\]|,|=|\\="
|
|
|
|
# Atoms
|
|
color green start="\"" end="\""
|
|
color green start="'" end="'"
|
|
|
|
# Comments
|
|
color white "(^|[[:blank:]])%.*$"
|
|
color white start="^\s*/\*" end="\*/"
|
|
|
|
# Reminders
|
|
color black,yellow "(BUG|DEBUG|FIXME|IDEA|NOTE|REVIEW|TEMP|TODO|WARNING|XXX)"
|
|
|
|
# Spaces in front of tabs
|
|
color ,red " + +"
|