.dotfiles/.bin/vim-grep

11 lines
139 B
Text
Raw Normal View History

2022-10-17 16:49:58 +00:00
#!/usr/bin/env sh
if [ -x "$(command -v rg)" ]
then
$EDITOR $(rg -l "$@")
exit 0
fi
2022-10-17 16:49:58 +00:00
# shellcheck disable=SC2046
2023-07-06 21:38:19 +00:00
$EDITOR $(grep "$@")