summaryrefslogtreecommitdiff
path: root/.config/nano/prolog.nanorc
blob: ecd9e410c005ad8fda6930b24e33afbdbb0096f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
## 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 " +	+"