Skip to content

Commit

Permalink
Merge pull request #185 from yochem/master
Browse files Browse the repository at this point in the history
Added syntax highlighting for Prolog
  • Loading branch information
scopatz authored Sep 5, 2018
2 parents 19feaf5 + 0726842 commit 1e589cb
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions prolog.nanorc
Original file line number Diff line number Diff line change
@@ -0,0 +1,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="/\*" end="\*/"

# Reminders
color black,yellow "(BUG|DEBUG|FIXME|IDEA|NOTE|REVIEW|TEMP|TODO|WARNING|XXX)"

# Spaces in front of tabs
color ,red " + +"

0 comments on commit 1e589cb

Please sign in to comment.