2013-03-03 17:25:40 +01:00
|
|
|
decl str grepcmd 'grep -RHn'
|
2013-04-17 19:15:15 +02:00
|
|
|
decl str toolsclient
|
2014-06-26 20:02:03 +02:00
|
|
|
decl -hidden int _grep_current_line 0
|
2012-12-06 20:26:23 +01:00
|
|
|
|
2012-09-12 14:22:01 +02:00
|
|
|
def -shell-params -file-completion \
|
2012-12-06 20:12:44 +01:00
|
|
|
grep %{ %sh{
|
2012-10-02 10:37:08 +02:00
|
|
|
output=$(mktemp -d -t kak-grep.XXXXXXXX)/fifo
|
2012-09-12 19:54:46 +02:00
|
|
|
mkfifo ${output}
|
2014-03-06 04:35:38 +01:00
|
|
|
if [ $# -gt 0 ]; then
|
|
|
|
( ${kak_opt_grepcmd} "$@" | tr -d '\r' > ${output} 2>&1 ) > /dev/null 2>&1 < /dev/null &
|
2012-12-06 20:26:23 +01:00
|
|
|
else
|
2014-03-06 04:35:38 +01:00
|
|
|
( ${kak_opt_grepcmd} "${kak_selection}" | tr -d '\r' > ${output} 2>&1 ) > /dev/null 2>&1 < /dev/null &
|
2012-12-06 20:26:23 +01:00
|
|
|
fi
|
2013-02-21 13:38:12 +01:00
|
|
|
|
2013-12-07 14:56:56 +01:00
|
|
|
echo "eval -try-client '$kak_opt_toolsclient' %{
|
2014-05-02 19:58:04 +02:00
|
|
|
edit! -fifo ${output} -scroll *grep*
|
2013-12-07 14:56:56 +01:00
|
|
|
set buffer filetype grep
|
2014-06-26 20:02:03 +02:00
|
|
|
set buffer _grep_current_line 0
|
2014-06-16 20:49:58 +02:00
|
|
|
hook buffer BufCloseFifo .* %{ nop %sh{ rm -r $(dirname ${output}) } }
|
2013-12-07 14:56:56 +01:00
|
|
|
}"
|
2012-08-07 14:29:33 +02:00
|
|
|
}}
|
|
|
|
|
|
|
|
hook global WinSetOption filetype=grep %{
|
2014-06-12 22:52:23 +02:00
|
|
|
addhl group grep
|
|
|
|
addhl -group grep regex "^([^:]+):(\d+):(\d+)?" 1:cyan 2:green 3:green
|
2014-06-26 20:02:03 +02:00
|
|
|
addhl -group grep line_option _grep_current_line default,blue
|
2014-06-16 21:42:12 +02:00
|
|
|
hook buffer -group grep-hooks NormalKey <c-m> jump
|
2012-08-07 14:29:33 +02:00
|
|
|
}
|
|
|
|
|
2014-06-12 22:52:23 +02:00
|
|
|
hook global WinSetOption filetype=(?!grep).* %{ rmhl grep; rmhooks buffer grep-hooks }
|
2012-08-07 14:29:33 +02:00
|
|
|
|
2013-12-13 15:00:14 +01:00
|
|
|
decl str jumpclient
|
|
|
|
|
|
|
|
def jump %{
|
|
|
|
exec 'xs^([^:]+):(\d+):(\d+)?<ret>'
|
2014-06-26 20:02:03 +02:00
|
|
|
set buffer _grep_current_line %val{cursor_line}
|
2014-07-31 23:10:01 +02:00
|
|
|
eval -try-client %opt{jumpclient} edit -existing %reg{1} %reg{2} %reg{3}
|
2014-04-08 00:46:37 +02:00
|
|
|
try %{ focus %opt{jumpclient} }
|
2013-12-13 15:00:14 +01:00
|
|
|
}
|
2014-06-26 20:02:03 +02:00
|
|
|
|
|
|
|
def next -docstring 'Jump to next grep match' %{
|
|
|
|
eval -try-client %opt{jumpclient} %{
|
|
|
|
buffer '*grep*'
|
|
|
|
exec %rec{%opt{_grep_current_line}ggl/^[^:]+:\d+:<ret>}
|
|
|
|
jump
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def prev -docstring 'Jump to previous grep match' %{
|
|
|
|
eval -try-client %opt{jumpclient} %{
|
|
|
|
buffer '*grep*'
|
|
|
|
exec %rec{%opt{_grep_current_line}g<a-/>^[^:]+:\d+:<ret>}
|
|
|
|
jump
|
|
|
|
}
|
|
|
|
}
|