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
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -params .. -file-completion \
|
2016-10-11 09:03:41 +02:00
|
|
|
-docstring %{grep [<arguments>]: grep utility wrapper
|
|
|
|
All the optional arguments are forwarded to the grep utility} \
|
|
|
|
grep %{ %sh{
|
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}
|
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
|
|
|
|
2017-11-03 09:09:45 +01:00
|
|
|
printf %s\\n "evaluate-commands -try-client '$kak_opt_toolsclient' %{
|
2014-05-02 19:58:04 +02:00
|
|
|
edit! -fifo ${output} -scroll *grep*
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype grep
|
|
|
|
set-option buffer grep_current_line 0
|
2015-02-20 19:43:09 +01:00
|
|
|
hook -group fifo buffer BufCloseFifo .* %{
|
|
|
|
nop %sh{ rm -r $(dirname ${output}) }
|
2017-01-04 01:07:45 +01:00
|
|
|
remove-hooks buffer fifo
|
2015-02-20 19:43:09 +01:00
|
|
|
}
|
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 %{
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter window group grep
|
|
|
|
add-highlighter window/grep regex "^((?:\w:)?[^:]+):(\d+):(\d+)?" 1:cyan 2:green 3:green
|
|
|
|
add-highlighter window/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
|
|
|
}
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group grep-highlight global WinSetOption filetype=(?!grep).* %{ remove-highlighter window/grep }
|
2016-09-28 08:45:01 +02:00
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook global WinSetOption filetype=(?!grep).* %{
|
2017-01-04 01:07:45 +01:00
|
|
|
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 %{
|
2017-11-03 09:09:45 +01:00
|
|
|
execute-keys '<a-x>s^((?:\w:)?[^:]+):(\d+):(\d+)?<ret>'
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer grep_current_line %val{cursor_line}
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -try-client %opt{jumpclient} 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*'
|
2017-07-28 20:19:58 +02:00
|
|
|
# First jump to enf of buffer so that if grep_current_line == 0
|
|
|
|
# 0g<a-l> will be a no-op and we'll jump to the first result.
|
|
|
|
# Yeah, thats ugly...
|
2017-11-03 09:09:45 +01: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
|
|
|
}
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ evaluate-commands -client %opt{toolsclient} %{ 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
|
2017-11-03 09:09:45 +01: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
|
|
|
}
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ evaluate-commands -client %opt{toolsclient} %{ execute-keys gg %opt{grep_current_line}g } }
|
2014-06-26 20:02:03 +02:00
|
|
|
}
|