2012-08-07 13:52:49 +02:00
|
|
|
def -env-params make %{ echo make in progress, please wait...; %sh{
|
|
|
|
output=$(mktemp -t kak-make.XXXXXXXX)
|
2012-08-29 14:03:55 +02:00
|
|
|
make $kak_param0 $kak_param1 $kak_param2 $kak_param3 $kak_param4 >& ${output} < /dev/null &
|
2012-08-07 23:29:12 +02:00
|
|
|
echo "echo
|
|
|
|
try %{ db *make* } catch %{ }
|
2012-08-29 00:35:45 +02:00
|
|
|
edit -fifo ${output} *make*
|
2012-08-07 23:29:12 +02:00
|
|
|
setb filetype make
|
2012-08-29 00:35:45 +02:00
|
|
|
hook buffer BufClose .* %{ %sh{ rm ${output} } }"
|
2012-08-07 13:52:49 +02:00
|
|
|
}}
|
|
|
|
|
|
|
|
hook global WinSetOption filetype=make %{
|
|
|
|
addhl group make-highlight
|
2012-08-29 14:13:59 +02:00
|
|
|
addhl -group make-highlight regex "^([^:\n]+):(\d+):(\d+):\h+(?:(error)|(warning)|(note)|(required from(?: here)?))?[^\n]*" 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).* %{ rmhl make-highlight; }
|
|
|
|
|
2012-08-11 12:14:17 +02:00
|
|
|
def errjump %{ exec 'xs^([^:]+):(\d+)(?::(\d+))?:([^\n]+)\n<ret>'; edit %reg{1} %reg{2} %reg{3}; echo %reg{4}" }
|