2017-05-16 14:35:43 +03:00
|
|
|
decl -docstring "shell command run to search for subtext in a file/directory" \
|
|
|
|
str grepcmd 'grep -RHn'
|
|
|
|
decl -docstring "name of the client in which utilities display information" \
|
|
|
|
str toolsclient
|
2017-06-03 16:04:06 +03: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 \
|
2016-10-11 10:03:41 +03:00
|
|
|
-docstring %{grep [<arguments>]: grep utility wrapper
|
|
|
|
All the optional arguments are forwarded to the grep utility} \
|
|
|
|
grep %{ %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
|
|
|
|
2016-04-23 08:47:01 +03:00
|
|
|
printf %s\\n "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
|
2017-06-03 16:04:06 +03: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}) }
|
2017-01-04 03:07:45 +03:00
|
|
|
remove-hooks buffer fifo
|
2015-02-20 21:43:09 +03:00
|
|
|
}
|
2013-12-07 17:56:56 +04:00
|
|
|
}"
|
2012-08-07 16:29:33 +04:00
|
|
|
}}
|
|
|
|
|
2016-09-25 16:15:07 +03:00
|
|
|
hook -group grep-highlight global WinSetOption filetype=grep %{
|
2017-01-04 03:07:45 +03:00
|
|
|
add-highlighter group grep
|
|
|
|
add-highlighter -group grep regex "^((?:\w:)?[^:]+):(\d+):(\d+)?" 1:cyan 2:green 3:green
|
2017-06-03 16:04:06 +03:00
|
|
|
add-highlighter -group grep line %{%opt{grep_current_line}} default+b
|
2016-09-25 16:15:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
hook global WinSetOption filetype=grep %{
|
2016-07-11 21:47:56 +03:00
|
|
|
hook buffer -group grep-hooks NormalKey <ret> grep-jump
|
2012-08-07 16:29:33 +04:00
|
|
|
}
|
|
|
|
|
2017-01-04 03:07:45 +03:00
|
|
|
hook -group grep-highlight global WinSetOption filetype=(?!grep).* %{ remove-highlighter grep }
|
2016-09-28 09:45:01 +03:00
|
|
|
|
2016-09-25 16:15:07 +03:00
|
|
|
hook global WinSetOption filetype=(?!grep).* %{
|
2017-01-04 03:07:45 +03:00
|
|
|
remove-hooks buffer grep-hooks
|
2016-09-25 16:15:07 +03:00
|
|
|
}
|
2012-08-07 16:29:33 +04:00
|
|
|
|
2017-05-16 14:35:43 +03:00
|
|
|
decl -docstring "name of the client in which all source code jumps will be executed" \
|
|
|
|
str jumpclient
|
2013-12-13 18:00:14 +04:00
|
|
|
|
2016-10-11 10:03:41 +03:00
|
|
|
def -hidden grep-jump %{
|
2016-03-20 19:37:58 +03:00
|
|
|
eval -collapse-jumps %{
|
|
|
|
try %{
|
|
|
|
exec 'xs^((?:\w:)?[^:]+):(\d+):(\d+)?<ret>'
|
2017-06-03 16:04:06 +03:00
|
|
|
set buffer grep_current_line %val{cursor_line}
|
2016-03-20 19:37:58 +03:00
|
|
|
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
|
|
|
|
2016-10-11 10:03:41 +03:00
|
|
|
def grep-next -docstring 'Jump to the 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*'
|
2017-06-03 16:04:06 +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
|
|
|
}
|
2017-06-03 16:04:06 +03:00
|
|
|
try %{ eval -client %opt{toolsclient} %{ exec %opt{grep_current_line}g } }
|
2014-06-26 22:02:03 +04:00
|
|
|
}
|
|
|
|
|
2016-10-11 10:03:41 +03:00
|
|
|
def grep-prev -docstring 'Jump to the 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*'
|
2017-06-03 16:04:06 +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
|
|
|
}
|
2017-06-03 16:04:06 +03:00
|
|
|
try %{ eval -client %opt{toolsclient} %{ exec %opt{grep_current_line}g } }
|
2014-06-26 22:02:03 +04:00
|
|
|
}
|