2017-11-03 10:34:41 +03:00
|
|
|
declare-option -docstring "shell command run to search for subtext in a file/directory" \
|
2017-05-16 14:35:43 +03:00
|
|
|
str grepcmd 'grep -RHn'
|
2017-11-03 10:34:41 +03:00
|
|
|
declare-option -docstring "name of the client in which utilities display information" \
|
2017-05-16 14:35:43 +03:00
|
|
|
str toolsclient
|
2017-11-03 10:34:41 +03:00
|
|
|
declare-option -hidden int grep_current_line 0
|
2012-12-06 23:26:23 +04:00
|
|
|
|
2017-11-03 10:34:41 +03:00
|
|
|
define-command -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} \
|
2018-05-07 00:29:52 +03:00
|
|
|
grep %{ evaluate-commands %sh{
|
2017-06-09 14:05:31 +03:00
|
|
|
output=$(mktemp -d "${TMPDIR:-/tmp}"/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
|
2019-06-09 12:45:59 +03:00
|
|
|
( ${kak_opt_grepcmd} "$@" | tr -d '\r' > ${output} 2>&1 & ) > /dev/null 2>&1 < /dev/null
|
2012-12-06 23:26:23 +04:00
|
|
|
else
|
2019-06-09 12:45:59 +03: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
|
|
|
|
2017-11-03 11:09:45 +03:00
|
|
|
printf %s\\n "evaluate-commands -try-client '$kak_opt_toolsclient' %{
|
2014-05-02 21:58:04 +04:00
|
|
|
edit! -fifo ${output} -scroll *grep*
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer filetype grep
|
|
|
|
set-option buffer grep_current_line 0
|
2018-08-19 01:04:31 +03:00
|
|
|
hook -always -once buffer BufCloseFifo .* %{ nop %sh{ rm -r $(dirname ${output}) } }
|
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 %{
|
2018-06-28 14:08:58 +03: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 02:11:35 +03:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/grep }
|
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
|
2018-12-11 02:11:35 +03:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-hooks buffer grep-hooks }
|
2016-09-25 16:15:07 +03:00
|
|
|
}
|
2012-08-07 16:29:33 +04:00
|
|
|
|
2017-11-03 10:34:41 +03:00
|
|
|
declare-option -docstring "name of the client in which all source code jumps will be executed" \
|
2017-05-16 14:35:43 +03:00
|
|
|
str jumpclient
|
2013-12-13 18:00:14 +04:00
|
|
|
|
2017-11-03 10:34:41 +03:00
|
|
|
define-command -hidden grep-jump %{
|
2018-02-24 11:02:15 +03:00
|
|
|
evaluate-commands %{ # use evaluate-commands to ensure jumps are collapsed
|
2016-03-20 19:37:58 +03:00
|
|
|
try %{
|
2017-11-03 11:09:45 +03:00
|
|
|
execute-keys '<a-x>s^((?:\w:)?[^:]+):(\d+):(\d+)?<ret>'
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer grep_current_line %val{cursor_line}
|
2017-11-03 11:09:45 +03:00
|
|
|
evaluate-commands -try-client %opt{jumpclient} edit -existing %reg{1} %reg{2} %reg{3}
|
2016-03-20 19:37:58 +03:00
|
|
|
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
|
|
|
|
2017-11-03 10:34:41 +03:00
|
|
|
define-command grep-next-match -docstring 'Jump to the next grep match' %{
|
2018-02-24 11:02:15 +03:00
|
|
|
evaluate-commands -try-client %opt{jumpclient} %{
|
2014-06-26 22:02:03 +04:00
|
|
|
buffer '*grep*'
|
2017-07-28 21:19:58 +03: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 11:09:45 +03:00
|
|
|
execute-keys "ge %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-11-03 11:09:45 +03:00
|
|
|
try %{ evaluate-commands -client %opt{toolsclient} %{ execute-keys gg %opt{grep_current_line}g } }
|
2014-06-26 22:02:03 +04:00
|
|
|
}
|
|
|
|
|
2017-11-03 10:34:41 +03:00
|
|
|
define-command grep-previous-match -docstring 'Jump to the previous grep match' %{
|
2018-02-24 11:02:15 +03:00
|
|
|
evaluate-commands -try-client %opt{jumpclient} %{
|
2014-06-26 22:02:03 +04:00
|
|
|
buffer '*grep*'
|
2017-07-28 21:19:58 +03:00
|
|
|
# See comment in grep-next-match
|
2017-11-03 11:09:45 +03:00
|
|
|
execute-keys "ge %opt{grep_current_line}g<a-h> <a-/>^[^:]+:\d+:<ret>"
|
2015-08-05 20:37:25 +03:00
|
|
|
grep-jump
|
2014-06-26 22:02:03 +04:00
|
|
|
}
|
2017-11-03 11:09:45 +03:00
|
|
|
try %{ evaluate-commands -client %opt{toolsclient} %{ execute-keys gg %opt{grep_current_line}g } }
|
2014-06-26 22:02:03 +04:00
|
|
|
}
|