add rc/make.kak which provides make and errjump commands

This commit is contained in:
Maxime Coste 2012-08-07 13:52:49 +02:00
parent 6a660f7e8f
commit a88da08767
2 changed files with 15 additions and 0 deletions

View File

@ -6,3 +6,4 @@ runtime rc/kakrc.kak
runtime rc/git.kak runtime rc/git.kak
runtime rc/global.kak runtime rc/global.kak
runtime rc/diff.kak runtime rc/diff.kak
runtime rc/make.kak

14
src/rc/make.kak Normal file
View File

@ -0,0 +1,14 @@
def -env-params make %{ echo make in progress, please wait...; %sh{
output=$(mktemp -t kak-make.XXXXXXXX)
make ${kak_param_0} ${kak_param_1} ${kak_param_2} ${kak_param_3} ${kak_param_4} >& ${output}
echo "echo; edit ${output}; setb filetype make; hook buffer BufClose ${output} %{ %sh{rm ${output} } }"
}}
hook global WinSetOption filetype=make %{
addhl group make-highlight
addhl -group make-highlight regex "^([^:]+):(\d+):(\d+):\h+(?:(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; }
def errjump %{ exec 'xs^([^:]+):(\d+)(?::(\d+))?<ret>'; edit %sh{ echo ${kak_reg_1} ${kak_reg_2} ${kak_reg_3} } }