mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-22 12:51:23 +03:00
c70e6919c2
The names of the authors were retrieved from: git log -p --follow syntax/<name>.nanorc and from: git log -p --follow --all -- doc/nanorc.sample For some files the original author is unclear, or the file is/was too small to mention an author for.
25 lines
859 B
Plaintext
25 lines
859 B
Plaintext
## Syntax highlighting for CMake files.
|
|
|
|
## Original author: Felipe Bugno
|
|
|
|
syntax cmake "(CMakeLists\.txt|\.cmake)$"
|
|
comment "#"
|
|
|
|
color green "^[[:blank:]]*[0-9A-Za-z_]+"
|
|
icolor brightyellow "^[[:blank:]]*(include|include_directories|include_external_msproject)\>"
|
|
|
|
icolor brightgreen "^[[:blank:]]*((else|end)?if|else|(end)?while|(end)?foreach|break)\>"
|
|
color brightgreen "\<(NOT|COMMAND|POLICY|TARGET|EXISTS|IS_(DIRECTORY|ABSOLUTE)|DEFINED)[[:blank:]]"
|
|
color brightgreen "[[:blank:]](OR|AND|IS_NEWER_THAN|MATCHES|(STR|VERSION_)?(LESS|GREATER|EQUAL))[[:blank:]]"
|
|
|
|
icolor brightred "^[[:blank:]]*((end)?(function|macro)|return)"
|
|
|
|
icolor cyan start="\$(ENV)?\{" end="\}"
|
|
color magenta "\<(APPLE|UNIX|WIN32|CYGWIN|BORLAND|MINGW|MSVC(_IDE|60|71|80|90)?)\>"
|
|
|
|
# Comments.
|
|
color brightblue "(^|[[:blank:]])#.*"
|
|
|
|
# Trailing whitespace.
|
|
color ,green "[[:space:]]+$"
|