diff options
| author | 2022-04-10 19:53:04 -0400 | |
|---|---|---|
| committer | 2022-04-10 19:53:04 -0400 | |
| commit | 11c2a60b3a8709993ef08b847eaacf7c255db971 (patch) | |
| tree | 6b509dae0ae1b5e6bb6cd318ecb1e1c966e8082a /dot_config/private_fish/plug/ugrep.fish | |
| parent | modularize foot config (diff) | |
fish: use return instead of exit
Diffstat (limited to '')
| -rw-r--r-- | dot_config/private_fish/plug/ugrep.fish | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dot_config/private_fish/plug/ugrep.fish b/dot_config/private_fish/plug/ugrep.fish index 2a2b8b3..6a396c4 100644 --- a/dot_config/private_fish/plug/ugrep.fish +++ b/dot_config/private_fish/plug/ugrep.fish @@ -1,4 +1,4 @@ -type -qf ugrep || exit +type -qf ugrep || return alias grep 'ugrep -G' alias egrep 'ugrep -E' alias fgrep 'ugrep -F' @@ -11,7 +11,7 @@ alias zxgrep 'ugrep -zW' alias xdump 'ugrep -X ""' -type -qf ug || exit +type -qf ug || return alias uq 'ug -Q' alias ux 'ug -UX' alias uz 'ug -z' |
