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}
|
|
|
|
( make $@ >& ${output} ) >& /dev/null < /dev/null &
|
2012-12-06 20:12:44 +01:00
|
|
|
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-09-12 19:54:46 +02:00
|
|
|
hook buffer BufClose .* %{ %sh{ rm -r $(dirname ${output}) } }"
|
2012-08-07 13:52:49 +02:00
|
|
|
}}
|
|
|
|
|
|
|
|
hook global WinSetOption filetype=make %{
|
|
|
|
addhl group make-highlight
|
2012-12-06 20:12:44 +01:00
|
|
|
addhl -group make-highlight 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).* %{ rmhl make-highlight; }
|
|
|
|
|
2012-12-06 20:12:44 +01:00
|
|
|
def errjump %{ exec 'xs^([^:\n]+):(\d+)(?::(\d+))?:(.*?)$<ret>'; edit %reg{1} %reg{2} %reg{3}; echo %reg{4} }
|