mirror of
https://github.com/divnix/digga.git
synced 2024-12-18 13:41:33 +03:00
6139834a4a
Upgrade the `rg` function to only pipe to `PAGER` when output is a terminal.
7 lines
129 B
Plaintext
7 lines
129 B
Plaintext
# pipe rg into less with colors
|
|
if [[ -t 1 && -n $PAGER ]]; then
|
|
@ripgrep@/bin/rg -p $@ | $PAGER
|
|
else
|
|
@ripgrep@/bin/rg $@
|
|
fi
|