Hi, Wondering if it is possible to add an option to page the output of rg instead of me having to do rg --color always | less -r
Thanks.
Dupe of #86.
Specifically, try putting this in your $HOME/bin:
$HOME/bin
#!/bin/sh /path/to/rg -p "$@" | less -RFX
Most helpful comment
Dupe of #86.
Specifically, try putting this in your
$HOME/bin: