2017-11-03 08:34:41 +01:00
|
|
|
declare-option -docstring "shell command run to search for subtext in a file/directory" \
|
2017-05-16 13:35:43 +02:00
|
|
|
str grepcmd 'grep -RHn'
|
2017-11-03 08:34:41 +01:00
|
|
|
declare-option -docstring "name of the client in which utilities display information" \
|
2017-05-16 13:35:43 +02:00
|
|
|
str toolsclient
|
2017-11-03 08:34:41 +01:00
|
|
|
declare-option -hidden int grep_current_line 0
|
2012-12-06 20:26:23 +01:00
|
|
|
|
2022-02-22 10:14:47 +01:00
|
|
|
define-command -params .. -docstring %{
|
2020-09-02 10:57:34 +02:00
|
|
|
grep [<arguments>]: grep utility wrapper
|
2020-09-06 02:56:37 +02:00
|
|
|
All optional arguments are forwarded to the grep utility
|
2023-03-31 22:53:39 +02:00
|
|
|
Passing no argument will perform a literal-string grep for the current selection
|
2020-09-02 10:57:34 +02:00
|
|
|
} grep %{ evaluate-commands %sh{
|
2023-04-06 00:34:37 +02:00
|
|
|
if [ $# -eq 0 ]; then
|
2023-04-06 19:20:52 +02:00
|
|
|
case "$kak_opt_grepcmd" in
|
|
|
|
ag\ * | git\ grep\ * | grep\ * | rg\ * | ripgrep\ * | ugrep\ * | ug\ *)
|
2023-04-06 00:34:37 +02:00
|
|
|
set -- -F "${kak_selection}"
|
|
|
|
;;
|
2023-04-06 19:20:52 +02:00
|
|
|
ack\ *)
|
2023-04-06 00:34:37 +02:00
|
|
|
set -- -Q "${kak_selection}"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
set -- "${kak_selection}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2019-12-31 02:50:19 +01:00
|
|
|
|
2017-06-09 13:05:31 +02:00
|
|
|
output=$(mktemp -d "${TMPDIR:-/tmp}"/kak-grep.XXXXXXXX)/fifo
|
2012-09-12 19:54:46 +02:00
|
|
|
mkfifo ${output}
|
2019-12-31 02:50:19 +01:00
|
|
|
( ${kak_opt_grepcmd} "$@" | tr -d '\r' > ${output} 2>&1 & ) > /dev/null 2>&1 < /dev/null
|
2013-02-21 13:38:12 +01:00
|
|
|
|
2017-11-03 09:09:45 +01:00
|
|
|
printf %s\\n "evaluate-commands -try-client '$kak_opt_toolsclient' %{
|
2019-09-26 12:30:38 +02:00
|
|
|
edit! -fifo ${output} *grep*
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype grep
|
|
|
|
set-option buffer grep_current_line 0
|
2018-08-19 00:04:31 +02:00
|
|
|
hook -always -once buffer BufCloseFifo .* %{ nop %sh{ rm -r $(dirname ${output}) } }
|
2013-12-07 14:56:56 +01:00
|
|
|
}"
|
2012-08-07 14:29:33 +02:00
|
|
|
}}
|
2022-02-22 10:14:47 +01:00
|
|
|
complete-command grep file
|
2012-08-07 14:29:33 +02:00
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group grep-highlight global WinSetOption filetype=grep %{
|
2018-06-28 13:08:58 +02:00
|
|
|
add-highlighter window/grep group
|
|
|
|
add-highlighter window/grep/ regex "^((?:\w:)?[^:\n]+):(\d+):(\d+)?" 1:cyan 2:green 3:green
|
|
|
|
add-highlighter window/grep/ line %{%opt{grep_current_line}} default+b
|
2018-12-11 00:11:35 +01:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/grep }
|
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
|
2018-12-11 00:11:35 +01:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-hooks buffer grep-hooks }
|
2016-09-25 15:15:07 +02:00
|
|
|
}
|
2012-08-07 14:29:33 +02:00
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
declare-option -docstring "name of the client in which all source code jumps will be executed" \
|
2017-05-16 13:35:43 +02:00
|
|
|
str jumpclient
|
2013-12-13 15:00:14 +01:00
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden grep-jump %{
|
2018-02-24 09:02:15 +01:00
|
|
|
evaluate-commands %{ # use evaluate-commands to ensure jumps are collapsed
|
2016-03-20 17:37:58 +01:00
|
|
|
try %{
|
2022-03-16 23:20:07 +01:00
|
|
|
execute-keys 'xs^((?:\w:)?[^:]+):(\d+):(\d+)?<ret>'
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer grep_current_line %val{cursor_line}
|
2019-10-23 13:23:59 +02:00
|
|
|
evaluate-commands -try-client %opt{jumpclient} -verbatim -- edit -existing %reg{1} %reg{2} %reg{3}
|
2016-03-20 17:37:58 +01:00
|
|
|
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
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command grep-next-match -docstring 'Jump to the next grep match' %{
|
2018-02-24 09:02:15 +01:00
|
|
|
evaluate-commands -try-client %opt{jumpclient} %{
|
2014-06-26 20:02:03 +02:00
|
|
|
buffer '*grep*'
|
2020-08-13 21:52:22 +02:00
|
|
|
# First jump to end of buffer so that if grep_current_line == 0
|
2017-07-28 20:19:58 +02:00
|
|
|
# 0g<a-l> will be a no-op and we'll jump to the first result.
|
|
|
|
# Yeah, thats ugly...
|
2022-04-15 00:14:17 +02:00
|
|
|
execute-keys ge %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
|
|
|
}
|
2020-08-13 21:52:22 +02:00
|
|
|
try %{
|
|
|
|
evaluate-commands -client %opt{toolsclient} %{
|
|
|
|
buffer '*grep*'
|
|
|
|
execute-keys gg %opt{grep_current_line}g
|
|
|
|
}
|
|
|
|
}
|
2014-06-26 20:02:03 +02:00
|
|
|
}
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command grep-previous-match -docstring 'Jump to the previous grep match' %{
|
2018-02-24 09:02:15 +01:00
|
|
|
evaluate-commands -try-client %opt{jumpclient} %{
|
2014-06-26 20:02:03 +02:00
|
|
|
buffer '*grep*'
|
2017-07-28 20:19:58 +02:00
|
|
|
# See comment in grep-next-match
|
2022-04-15 00:14:17 +02:00
|
|
|
execute-keys ge %opt{grep_current_line}g<a-h> <a-/>^[^:]+:\d+:<ret>
|
2015-08-05 19:37:25 +02:00
|
|
|
grep-jump
|
2014-06-26 20:02:03 +02:00
|
|
|
}
|
2020-08-13 21:52:22 +02:00
|
|
|
try %{
|
|
|
|
evaluate-commands -client %opt{toolsclient} %{
|
|
|
|
buffer '*grep*'
|
|
|
|
execute-keys gg %opt{grep_current_line}g
|
|
|
|
}
|
|
|
|
}
|
2014-06-26 20:02:03 +02:00
|
|
|
}
|