case directly to $kak_opt_grepcmd

This commit is contained in:
JacobTravers 2023-04-06 10:20:52 -07:00
parent d8b9b13d07
commit cac2167540

View File

@ -10,15 +10,11 @@ define-command -params .. -docstring %{
Passing no argument will perform a literal-string grep for the current selection
} grep %{ evaluate-commands %sh{
if [ $# -eq 0 ]; then
IFS=" " greptool=$(
set -- $kak_opt_grepcmd
echo "$1"
)
case "$greptool" in
ag | grep | rg | ripgrep | ugrep | ug)
case "$kak_opt_grepcmd" in
ag\ * | git\ grep\ * | grep\ * | rg\ * | ripgrep\ * | ugrep\ * | ug\ *)
set -- -F "${kak_selection}"
;;
ack )
ack\ *)
set -- -Q "${kak_selection}"
;;
*)