2013-03-03 17:25:40 +01:00
|
|
|
decl str makecmd make
|
2013-04-17 19:15:15 +02:00
|
|
|
decl str toolsclient
|
2013-01-06 19:21:42 +01:00
|
|
|
|
2012-12-06 20:12:44 +01:00
|
|
|
def -shell-params make %{ %sh{
|
2012-10-02 10:37:08 +02:00
|
|
|
output=$(mktemp -d -t kak-make.XXXXXXXX)/fifo
|
2012-09-12 19:54:46 +02:00
|
|
|
mkfifo ${output}
|
2013-11-08 20:05:30 +01:00
|
|
|
( eval ${kak_opt_makecmd} $@ >& ${output} ) >& /dev/null < /dev/null &
|
2013-02-21 13:38:12 +01:00
|
|
|
|
2013-12-07 14:56:56 +01:00
|
|
|
echo "eval -try-client '$kak_opt_toolsclient' %{
|
|
|
|
edit! -fifo ${output} *make*
|
|
|
|
set buffer filetype make
|
|
|
|
hook buffer BufClose .* %{ nop %sh{ rm -r $(dirname ${output}) } }
|
|
|
|
}"
|
2012-08-07 13:52:49 +02:00
|
|
|
}}
|
|
|
|
|
2013-12-03 23:15:59 +01:00
|
|
|
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
|
|
|
|
|
2012-08-07 13:52:49 +02:00
|
|
|
hook global WinSetOption filetype=make %{
|
2013-12-03 23:15:59 +01:00
|
|
|
addhl ref make
|
2013-04-11 14:30:02 +02:00
|
|
|
hook buffer -id make-hooks NormalKey <c-m> errjump
|
2012-08-07 13:52:49 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 23:15:59 +01:00
|
|
|
hook global WinSetOption filetype=(?!make).* %{ rmhl make; rmhooks buffer make-hooks }
|
2012-08-07 13:52:49 +02:00
|
|
|
|
2013-01-03 18:47:51 +01:00
|
|
|
def errjump %{ exec 'xs^([^:\n]+):(\d+)(?::(\d+))?:(.*?)$<ret><a-h><space>'; edit %reg{1} %reg{2} %reg{3}; echo %reg{4} }
|