1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-19 16:57:22 +03:00
kakoune/rc/make.kak
Maxime Coste fa72d27f9a Make kak more installable
* Kak relies on the kakrc file to be in ../share/kak/kakrc relative
to kak binary rather than in the same directory
* Added an install target to the Makefile
2013-12-23 21:36:05 +00:00

37 lines
1.2 KiB
Plaintext

decl str makecmd make
decl str toolsclient
def -shell-params make %{ %sh{
output=$(mktemp -d -t kak-make.XXXXXXXX)/fifo
mkfifo ${output}
( eval ${kak_opt_makecmd} $@ >& ${output} ) >& /dev/null < /dev/null &
echo "eval -try-client '$kak_opt_toolsclient' %{
edit! -fifo ${output} *make*
set buffer filetype make
hook buffer BufClose .* %{ nop %sh{ rm -r $(dirname ${output}) } }
}"
}}
defhl make
addhl -def-group make regex "^([^:\n]+):(\d+):(\d+):\h+(?:((?:fatal )?error)|(warning)|(note)|(required from(?: here)?))?.*?$" 1:cyan 2:green 3:green 4:red 5:yellow 6:blue 7:yellow
hook global WinSetOption filetype=make %{
addhl ref make
hook buffer -id make-hooks NormalKey <c-m> errjump
}
hook global WinSetOption filetype=(?!make).* %{ rmhl make; rmhooks buffer make-hooks }
def errjump %{
try %{
exec gll<a-?> "Entering directory" <ret>
exec s "Entering directory '([^']+)'.*\n([^:]+):(\d+):(\d+):[^\n]+\'" <ret>l
#edit "%reg{1}/%reg{2}" %reg{3} %reg{4}
exec :edit<space><c-r>1/<c-r>2<space><c-r>3<space><c-r>4<ret>
} catch %{
exec ghgl s "([^:]+):(\d+):(\d+):[^\n]+\'" <ret>l
edit %reg{1} %reg{2} %reg{3}
}
}