.dotfiles/.bin/vim-grep
Tobias Reisinger 06f35a4eb9
Update various cities
Migrate alacritty.toml to new version
Remove various waybar modules
2024-10-23 14:27:23 +02:00

10 lines
139 B
Bash
Executable file

#!/usr/bin/env sh
if [ -x "$(command -v rg)" ]
then
$EDITOR $(rg -l "$@")
exit 0
fi
# shellcheck disable=SC2046
$EDITOR $(grep "$@")