1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-23 23:34:12 +03:00
kakoune/rc/core/makefile.kak

70 lines
2.0 KiB
Plaintext
Raw Normal View History

2015-09-21 15:37:45 +03:00
# Detection
# ‾‾‾‾‾‾‾‾‾
hook global BufSetOption mimetype=text/x-makefile %{
set buffer filetype makefile
}
hook global BufCreate .*/?[mM]akefile %{
2015-09-21 15:37:45 +03: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
addhl -group /makefile/content regex ^[\w.%-]+\h*:\s 0:identifier
2015-09-21 15:37:45 +03:00
addhl -group /makefile/content regex [+?:]= 0:operator
%sh{
# Grammar
keywords="ifeq|ifneq|ifdef|ifndef|else|endif|define|endef"
# Add the language's grammar to the static completion list
2016-03-25 22:31:01 +03:00
printf %s\\n "hook global WinSetOption filetype=makefile %{
set window static_words '${keywords}'
}" | sed 's,|,:,g'
# Highlight keywords
printf %s "addhl -group /makefile/content regex \b(${keywords})\b 0:keyword"
}
# 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 09:19:04 +03: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> }
}
}
2015-09-21 15:37:45 +03:00
# Initialization
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
hook -group makefile-highlight global WinSetOption filetype=makefile %{ addhl ref makefile }
hook global WinSetOption filetype=makefile %{
hook window InsertChar \n -group makefile-indent _makefile-indent-on-new-line
set window comment_selection_chars ""
set window comment_line_chars "#"
}
hook global WinSetOption filetype=(?!makefile).* %{
rmhl makefile
rmhooks window makefile-indent
}