kakoune/src/rc/make.kak

20 lines
859 B
Plaintext
Raw Normal View History

2012-09-09 17:14:08 +02:00
def -shell-params make %{ echo make in progress, please wait...; %sh{
output=$(mktemp -t -d kak-make.XXXXXXXX)/fifo
mkfifo ${output}
( make $@ >& ${output} ) >& /dev/null < /dev/null &
echo "echo
try %{ db *make* } catch %{ }
edit -fifo ${output} *make*
setb filetype make
hook buffer BufClose .* %{ %sh{ rm -r $(dirname ${output}) } }"
}}
hook global WinSetOption filetype=make %{
addhl group make-highlight
2012-09-06 13:35:36 +02:00
addhl -group make-highlight regex "^([^:\n]+):(\d+):(\d+):\h+(?:((?:fatal )?error)|(warning)|(note)|(required from(?: here)?))?[^\n]*" 1:cyan 2:green 3:green 4:red 5:yellow 6:blue 7:yellow
}
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}" }