apply literal flag according to grep tool
This commit is contained in:
parent
4d9b853561
commit
d8b9b13d07
|
@ -9,9 +9,23 @@ define-command -params .. -docstring %{
|
||||||
All optional arguments are forwarded to the grep utility
|
All optional arguments are forwarded to the grep utility
|
||||||
Passing no argument will perform a literal-string grep for the current selection
|
Passing no argument will perform a literal-string grep for the current selection
|
||||||
} grep %{ evaluate-commands %sh{
|
} grep %{ evaluate-commands %sh{
|
||||||
if [ $# -eq 0 ]; then
|
if [ $# -eq 0 ]; then
|
||||||
set -- -F "${kak_selection}"
|
IFS=" " greptool=$(
|
||||||
fi
|
set -- $kak_opt_grepcmd
|
||||||
|
echo "$1"
|
||||||
|
)
|
||||||
|
case "$greptool" in
|
||||||
|
ag | grep | rg | ripgrep | ugrep | ug)
|
||||||
|
set -- -F "${kak_selection}"
|
||||||
|
;;
|
||||||
|
ack )
|
||||||
|
set -- -Q "${kak_selection}"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set -- "${kak_selection}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
output=$(mktemp -d "${TMPDIR:-/tmp}"/kak-grep.XXXXXXXX)/fifo
|
output=$(mktemp -d "${TMPDIR:-/tmp}"/kak-grep.XXXXXXXX)/fifo
|
||||||
mkfifo ${output}
|
mkfifo ${output}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user