2013-03-03 20:25:40 +04:00
|
|
|
decl str makecmd make
|
2013-04-17 21:15:15 +04:00
|
|
|
decl str toolsclient
|
2014-06-18 22:30:40 +04:00
|
|
|
decl -hidden int _make_current_error_line
|
2013-01-06 22:21:42 +04:00
|
|
|
|
2012-12-06 23:12:44 +04:00
|
|
|
def -shell-params make %{ %sh{
|
2012-10-02 12:37:08 +04:00
|
|
|
output=$(mktemp -d -t kak-make.XXXXXXXX)/fifo
|
2012-09-12 21:54:46 +04:00
|
|
|
mkfifo ${output}
|
2014-03-06 07:35:38 +04:00
|
|
|
( eval ${kak_opt_makecmd} "$@" > ${output} 2>&1 ) > /dev/null 2>&1 < /dev/null &
|
2013-02-21 16:38:12 +04:00
|
|
|
|
2013-12-07 17:56:56 +04:00
|
|
|
echo "eval -try-client '$kak_opt_toolsclient' %{
|
2014-05-02 21:58:04 +04:00
|
|
|
edit! -fifo ${output} -scroll *make*
|
2013-12-07 17:56:56 +04:00
|
|
|
set buffer filetype make
|
2014-06-18 22:30:40 +04:00
|
|
|
set buffer _make_current_error_line 0
|
2014-06-16 22:49:58 +04:00
|
|
|
hook buffer BufCloseFifo .* %{ nop %sh{ rm -r $(dirname ${output}) } }
|
2013-12-07 17:56:56 +04:00
|
|
|
}"
|
2012-08-07 15:52:49 +04:00
|
|
|
}}
|
|
|
|
|
2014-06-13 00:52:23 +04:00
|
|
|
addhl -group / group make
|
2014-11-11 16:56:21 +03:00
|
|
|
addhl -group /make regex "^((?:\w:)?[^:\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
|
2014-09-08 22:32:46 +04:00
|
|
|
addhl -group /make line_option _make_current_error_line default+b
|
2013-12-04 02:15:59 +04:00
|
|
|
|
2012-08-07 15:52:49 +04:00
|
|
|
hook global WinSetOption filetype=make %{
|
2013-12-04 02:15:59 +04:00
|
|
|
addhl ref make
|
2014-06-16 23:42:12 +04:00
|
|
|
hook buffer -group make-hooks NormalKey <c-m> errjump
|
2012-08-07 15:52:49 +04:00
|
|
|
}
|
|
|
|
|
2013-12-04 02:15:59 +04:00
|
|
|
hook global WinSetOption filetype=(?!make).* %{ rmhl make; rmhooks buffer make-hooks }
|
2012-08-07 15:52:49 +04:00
|
|
|
|
2014-04-04 19:34:43 +04:00
|
|
|
decl str jumpclient
|
|
|
|
|
2014-02-19 07:45:41 +04:00
|
|
|
def errjump -docstring 'Jump to error location' %{
|
2013-12-13 17:58:12 +04:00
|
|
|
try %{
|
|
|
|
exec gll<a-?> "Entering directory" <ret>
|
2014-08-02 12:54:28 +04:00
|
|
|
exec s "Entering directory '([^']+)'.*\n([^:]+):(\d+):(?:(\d+):)?([^\n]+)\'" <ret>l
|
2014-06-18 22:30:40 +04:00
|
|
|
set buffer _make_current_error_line %val{cursor_line}
|
2014-11-11 16:53:57 +03:00
|
|
|
eval -try-client %opt{jumpclient} "edit -existing %reg{1}/%reg{2} %reg{3} %reg{4}; echo -color Information '%reg{5}'"
|
2014-04-08 02:46:37 +04:00
|
|
|
try %{ focus %opt{jumpclient} }
|
2013-12-13 17:58:12 +04:00
|
|
|
} catch %{
|
2014-11-11 16:56:21 +03:00
|
|
|
exec ghgl s "((?:\w:)?[^:]+):(\d+):(?:(\d+):)?([^\n]+)\'" <ret>l
|
2014-06-18 22:30:40 +04:00
|
|
|
set buffer _make_current_error_line %val{cursor_line}
|
2014-11-11 16:53:57 +03:00
|
|
|
eval -try-client %opt{jumpclient} "edit -existing %reg{1} %reg{2} %reg{3}; echo -color Information '%reg{4}'"
|
2014-04-08 02:46:37 +04:00
|
|
|
try %{ focus %opt{jumpclient} }
|
2013-12-13 17:58:12 +04:00
|
|
|
}
|
|
|
|
}
|
2014-06-18 22:30:40 +04:00
|
|
|
|
|
|
|
def errnext -docstring 'Jump to next error' %{
|
|
|
|
eval -try-client %opt{jumpclient} %{
|
|
|
|
buffer '*make*'
|
2014-11-11 16:53:57 +03:00
|
|
|
exec "%opt{_make_current_error_line}ggl/[0-9]+: (?:fatal )?error:<ret>"
|
2014-06-18 22:30:40 +04:00
|
|
|
errjump
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def errprev -docstring 'Jump to previous error' %{
|
|
|
|
eval -try-client %opt{jumpclient} %{
|
|
|
|
buffer '*make*'
|
2014-11-11 16:53:57 +03:00
|
|
|
exec "%opt{_make_current_error_line}ggh<a-/>[0-9]+: (?:fatal )?error:<ret>"
|
2014-06-18 22:30:40 +04:00
|
|
|
errjump
|
|
|
|
}
|
|
|
|
}
|