Skip to content

Instantly share code, notes, and snippets.

@seanf
Created May 30, 2025 12:32
Show Gist options
  • Save seanf/5a2d9960f4a78e794eb660a08765b0c3 to your computer and use it in GitHub Desktop.
Save seanf/5a2d9960f4a78e794eb660a08765b0c3 to your computer and use it in GitHub Desktop.
ripgrep with pager
#!/bin/sh
# https://news.ycombinator.com/item?id=38820047
# -p --pretty
# -R --RAW-CONTROL-CHARS
# -F --quit-if-one-screen
# -X --no-init
exec rg -p "$@" | less -RFX
#exec rg -p "$@" | ov -F
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment