2013-03-03 17:25:40 +01:00
|
|
|
decl str makecmd make
|
2016-12-08 11:33:28 +01:00
|
|
|
decl str make_error_pattern " (?:fatal )?error:"
|
2016-12-06 15:47:03 +01:00
|
|
|
|
2013-04-17 19:15:15 +02:00
|
|
|
decl str toolsclient
|
2016-12-09 14:33:01 +01:00
|
|
|
decl -hidden int make_current_error_line
|
2013-01-06 19:21:42 +01:00
|
|
|
|
2016-10-11 09:03:41 +02:00
|
|
|
def -params .. \
|
|
|
|
-docstring %{make [<arguments>]: make utility wrapper
|
|
|
|
All the optional arguments are forwarded to the make utility} \
|
|
|
|
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}
|
2014-03-06 04:35:38 +01:00
|
|
|
( eval ${kak_opt_makecmd} "$@" > ${output} 2>&1 ) > /dev/null 2>&1 < /dev/null &
|
2013-02-21 13:38:12 +01:00
|
|
|
|
2016-04-23 07:47:01 +02:00
|
|
|
printf %s\\n "eval -try-client '$kak_opt_toolsclient' %{
|
2014-05-02 19:58:04 +02:00
|
|
|
edit! -fifo ${output} -scroll *make*
|
2013-12-07 14:56:56 +01:00
|
|
|
set buffer filetype make
|
2016-12-09 14:33:01 +01:00
|
|
|
set buffer make_current_error_line 0
|
2015-02-20 19:43:09 +01:00
|
|
|
hook -group fifo buffer BufCloseFifo .* %{
|
|
|
|
nop %sh{ rm -r $(dirname ${output}) }
|
|
|
|
rmhooks buffer fifo
|
|
|
|
}
|
2013-12-07 14:56:56 +01:00
|
|
|
}"
|
2012-08-07 13:52:49 +02:00
|
|
|
}}
|
|
|
|
|
2014-06-12 22:52:23 +02:00
|
|
|
addhl -group / group make
|
2014-11-11 14:56:21 +01: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
|
2017-01-06 18:05:39 +01:00
|
|
|
addhl -group /make regex "^\h*(~*(?:(\^)~*)?)$" 1:green 2:cyan+b
|
2016-12-09 14:33:01 +01:00
|
|
|
addhl -group /make line '%opt{make_current_error_line}' default+b
|
2013-12-03 23:15:59 +01:00
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group make-highlight global WinSetOption filetype=make %{ addhl ref make }
|
|
|
|
|
2012-08-07 13:52:49 +02:00
|
|
|
hook global WinSetOption filetype=make %{
|
2016-07-11 20:47:56 +02:00
|
|
|
hook buffer -group make-hooks NormalKey <ret> make-jump
|
2012-08-07 13:52:49 +02:00
|
|
|
}
|
|
|
|
|
2016-10-01 15:09:59 +02:00
|
|
|
hook -group make-highlight global WinSetOption filetype=(?!make).* %{ rmhl make }
|
2016-09-28 08:45:01 +02:00
|
|
|
|
|
|
|
hook global WinSetOption filetype=(?!make).* %{
|
|
|
|
rmhooks buffer make-hooks
|
|
|
|
}
|
2012-08-07 13:52:49 +02:00
|
|
|
|
2014-04-04 17:34:43 +02:00
|
|
|
decl str jumpclient
|
|
|
|
|
2016-10-11 09:03:41 +02:00
|
|
|
def -hidden make-jump %{
|
2016-03-20 17:37:58 +01:00
|
|
|
eval -collapse-jumps %{
|
|
|
|
try %{
|
|
|
|
exec gl<a-?> "Entering directory" <ret>
|
|
|
|
exec s "Entering directory '([^']+)'.*\n([^:]+):(\d+):(?:(\d+):)?([^\n]+)\'" <ret>l
|
2016-12-09 14:33:01 +01:00
|
|
|
set buffer make_current_error_line %val{cursor_line}
|
|
|
|
eval -try-client %opt{jumpclient} "edit -existing %reg{1}/%reg{2} %reg{3} %reg{4}; echo -color Information %{%reg{5}}; try %{ focus }"
|
2016-03-20 17:37:58 +01:00
|
|
|
} catch %{
|
|
|
|
exec <a-h><a-l> s "((?:\w:)?[^:]+):(\d+):(?:(\d+):)?([^\n]+)\'" <ret>l
|
2016-12-09 14:33:01 +01:00
|
|
|
set buffer make_current_error_line %val{cursor_line}
|
|
|
|
eval -try-client %opt{jumpclient} "edit -existing %reg{1} %reg{2} %reg{3}; echo -color Information %{%reg{4}}; try %{ focus }"
|
2016-03-20 17:37:58 +01:00
|
|
|
}
|
2013-12-13 14:58:12 +01:00
|
|
|
}
|
|
|
|
}
|
2014-06-18 20:30:40 +02:00
|
|
|
|
2016-10-11 09:03:41 +02:00
|
|
|
def make-next -docstring 'Jump to the next make error' %{
|
2016-03-20 17:37:58 +01:00
|
|
|
eval -collapse-jumps -try-client %opt{jumpclient} %{
|
2014-06-18 20:30:40 +02:00
|
|
|
buffer '*make*'
|
2016-12-09 14:33:01 +01:00
|
|
|
exec "%opt{make_current_error_line}ggl" "/^(?:\w:)?[^:\n]+:\d+:(?:\d+:)?%opt{make_error_pattern}<ret>"
|
2015-08-05 00:10:08 +02:00
|
|
|
make-jump
|
2014-06-18 20:30:40 +02:00
|
|
|
}
|
2016-12-09 14:33:01 +01:00
|
|
|
try %{ eval -client %opt{toolsclient} %{ exec %opt{make_current_error_line}g } }
|
2014-06-18 20:30:40 +02:00
|
|
|
}
|
|
|
|
|
2016-10-11 09:03:41 +02:00
|
|
|
def make-prev -docstring 'Jump to the previous make error' %{
|
2016-03-20 17:37:58 +01:00
|
|
|
eval -collapse-jumps -try-client %opt{jumpclient} %{
|
2014-06-18 20:30:40 +02:00
|
|
|
buffer '*make*'
|
2016-12-09 14:33:01 +01:00
|
|
|
exec "%opt{make_current_error_line}g" "<a-/>^(?:\w:)?[^:\n]+:\d+:(?:\d+:)?%opt{make_error_pattern}<ret>"
|
2015-08-05 00:10:08 +02:00
|
|
|
make-jump
|
2014-06-18 20:30:40 +02:00
|
|
|
}
|
2016-12-09 14:33:01 +01:00
|
|
|
try %{ eval -client %opt{toolsclient} %{ exec %opt{make_current_error_line}g } }
|
2014-06-18 20:30:40 +02:00
|
|
|
}
|