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