2015-09-21 14:37:45 +02:00
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2016-02-24 23:26:54 +01:00
|
|
|
hook global BufCreate .*/?[mM]akefile %{
|
2015-09-21 14:37:45 +02:00
|
|
|
set buffer filetype makefile
|
|
|
|
}
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
addhl -group / regions -default content makefile \
|
|
|
|
comment '#' '$' '' \
|
|
|
|
eval '\$\(' '\)' '\('
|
|
|
|
|
|
|
|
addhl -group /makefile/comment fill comment
|
|
|
|
addhl -group /makefile/eval fill value
|
|
|
|
|
2016-09-25 08:13:39 +02:00
|
|
|
addhl -group /makefile/content regex ^[\w.%-]+\h*:\s 0:identifier
|
2015-09-21 14:37:45 +02:00
|
|
|
addhl -group /makefile/content regex [+?:]= 0:operator
|
|
|
|
|
2016-03-14 13:08:51 +01:00
|
|
|
%sh{
|
|
|
|
# Grammar
|
2016-09-24 10:09:42 +02:00
|
|
|
keywords="ifeq|ifneq|ifdef|ifndef|else|endif|define|endef"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
2016-03-25 20:31:01 +01:00
|
|
|
printf %s\\n "hook global WinSetOption filetype=makefile %{
|
2016-03-14 13:08:51 +01:00
|
|
|
set window static_words '${keywords}'
|
2016-03-17 14:30:14 +01:00
|
|
|
}" | sed 's,|,:,g'
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Highlight keywords
|
2016-04-21 21:43:17 +02:00
|
|
|
printf %s "addhl -group /makefile/content regex \b(${keywords})\b 0:keyword"
|
2016-03-14 13:08:51 +01:00
|
|
|
}
|
|
|
|
|
2016-02-24 23:26:54 +01:00
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
def -hidden _makefile-indent-on-new-line %{
|
|
|
|
eval -draft -itersel %{
|
|
|
|
# preserve previous line indent
|
|
|
|
try %{ exec -draft \;K<a-&> }
|
|
|
|
## If the line above is a target indent with a tab
|
|
|
|
try %{ exec -draft Z k<a-x> <a-k>^[^:]+:\s<ret> z i<tab> }
|
|
|
|
# cleanup trailing white space son previous line
|
|
|
|
try %{ exec -draft k<a-x> s \h+$ <ret>d }
|
2016-09-25 08:19:04 +02:00
|
|
|
# indent after some keywords
|
|
|
|
try %{ exec -draft Z k<a-x> <a-k> ^\h*(ifeq|ifneq|ifdef|ifndef|else|define)\b<ret> z <a-gt> }
|
2016-02-24 23:26:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-21 14:37:45 +02:00
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group makefile-highlight global WinSetOption filetype=makefile %{ addhl ref makefile }
|
2015-10-25 13:17:36 +01:00
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook global WinSetOption filetype=makefile %{
|
2016-02-24 23:26:54 +01:00
|
|
|
hook window InsertChar \n -group makefile-indent _makefile-indent-on-new-line
|
2015-10-25 13:17:36 +01:00
|
|
|
}
|
2016-02-24 23:26:54 +01:00
|
|
|
|
2016-10-01 15:09:59 +02:00
|
|
|
hook -group makefile-highlight global WinSetOption filetype=(?!makefile).* %{ rmhl makefile }
|
2016-09-28 08:45:01 +02:00
|
|
|
|
2016-02-24 23:26:54 +01:00
|
|
|
hook global WinSetOption filetype=(?!makefile).* %{
|
|
|
|
rmhooks window makefile-indent
|
|
|
|
}
|