2015-09-11 09:40:22 +02:00
|
|
|
# http://gittup.org/tup/
|
|
|
|
#
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate (.+/)?[Tt]upfile %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype tupfile
|
2015-09-11 09:40:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/ regions -default code tupfile \
|
2015-09-11 09:40:22 +02:00
|
|
|
string '"' (?<!\\)(\\\\)*" '' \
|
|
|
|
comment '#' $ ''
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/tupfile/string fill string
|
|
|
|
add-highlighter shared/tupfile/comment fill comment
|
2015-09-11 09:40:22 +02:00
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/tupfile/code regex "\%[fbBeoOdg]\b" 0:value
|
|
|
|
add-highlighter shared/tupfile/code regex "\$\([\w_]+\)" 0:value
|
|
|
|
add-highlighter shared/tupfile/code regex ":\s*(foreach)\b" 1:keyword
|
|
|
|
add-highlighter shared/tupfile/code regex "\.gitignore\b" 0:keyword
|
|
|
|
add-highlighter shared/tupfile/code regex "\b(ifn?eq|ifn?def|else|endif|error|include|include_rules|run|preload|export)\b" 0:keyword
|
|
|
|
add-highlighter shared/tupfile/code regex "\b(&?[\w_]+)\s*[:+]?=" 1:keyword
|
2015-09-11 09:40:22 +02:00
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group tupfile-highlight global WinSetOption filetype=tupfile %{ add-highlighter window ref tupfile }
|
|
|
|
hook -group tupfile-highlight global WinSetOption filetype=(?!tupfile).* %{ remove-highlighter window/tupfile }
|