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
|
|
|
|
2015-12-01 15:00:55 +01:00
|
|
|
def -params .. -file-completion \
|
2015-08-03 20:44:27 +02:00
|
|
|
grep -docstring "Grep utility wrapper" %{ %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
|
|
|
|
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 *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
|
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 14:29:33 +02:00
|
|
|
}}
|
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group grep-highlight global WinSetOption filetype=grep %{
|
2014-06-12 22:52:23 +02:00
|
|
|
addhl group grep
|
2014-11-11 14:58:12 +01:00
|
|
|
addhl -group grep regex "^((?:\w:)?[^:]+):(\d+):(\d+)?" 1:cyan 2:green 3:green
|
2015-05-04 18:12:51 +02:00
|
|
|
addhl -group grep line %{%opt{_grep_current_line}} default+b
|
2016-09-25 15:15:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
hook global WinSetOption filetype=grep %{
|
2016-07-11 20:47:56 +02:00
|
|
|
hook buffer -group grep-hooks NormalKey <ret> grep-jump
|
2012-08-07 14:29:33 +02:00
|
|
|
}
|
|
|
|
|
2016-09-28 08:45:01 +02:00
|
|
|
hool -group grep-highlight global WinSetOption filetype=(?!grep).* %{ rmhl grep }
|
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook global WinSetOption filetype=(?!grep).* %{
|
|
|
|
rmhooks buffer grep-hooks
|
|
|
|
}
|
2012-08-07 14:29:33 +02:00
|
|
|
|
2013-12-13 15:00:14 +01:00
|
|
|
decl str jumpclient
|
|
|
|
|
2015-08-03 20:46:46 +02:00
|
|
|
def grep-jump %{
|
2016-03-20 17:37:58 +01: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 20:46:46 +02:00
|
|
|
}
|
2013-12-13 15:00:14 +01:00
|
|
|
}
|
2014-06-26 20:02:03 +02:00
|
|
|
|
2015-08-03 20:46:46 +02:00
|
|
|
def grep-next -docstring 'Jump to next grep match' %{
|
2016-03-20 17:37:58 +01:00
|
|
|
eval -collapse-jumps -try-client %opt{jumpclient} %{
|
2014-06-26 20:02:03 +02:00
|
|
|
buffer '*grep*'
|
2015-06-08 23:33:32 +02:00
|
|
|
exec "%opt{_grep_current_line}g<a-l>/^[^:]+:\d+:<ret>"
|
2015-08-05 19:37:25 +02:00
|
|
|
grep-jump
|
2014-06-26 20:02:03 +02:00
|
|
|
}
|
2015-09-19 12:02:24 +02:00
|
|
|
try %{ eval -client %opt{toolsclient} %{ exec %opt{_grep_current_line}g } }
|
2014-06-26 20:02:03 +02:00
|
|
|
}
|
|
|
|
|
2015-08-03 20:46:46 +02:00
|
|
|
def grep-prev -docstring 'Jump to previous grep match' %{
|
2016-03-20 17:37:58 +01:00
|
|
|
eval -collapse-jumps -try-client %opt{jumpclient} %{
|
2014-06-26 20:02:03 +02:00
|
|
|
buffer '*grep*'
|
2014-11-11 14:53:57 +01:00
|
|
|
exec "%opt{_grep_current_line}g<a-/>^[^:]+:\d+:<ret>"
|
2015-08-05 19:37:25 +02:00
|
|
|
grep-jump
|
2014-06-26 20:02:03 +02:00
|
|
|
}
|
2015-09-19 12:02:24 +02:00
|
|
|
try %{ eval -client %opt{toolsclient} %{ exec %opt{_grep_current_line}g } }
|
2014-06-26 20:02:03 +02:00
|
|
|
}
|