Skip to content

Instantly share code, notes, and snippets.

@cartok
Last active June 1, 2026 00:51
Show Gist options
  • Select an option

  • Save cartok/2436746187e8d2d02558abfcdb31afdc to your computer and use it in GitHub Desktop.

Select an option

Save cartok/2436746187e8d2d02558abfcdb31afdc to your computer and use it in GitHub Desktop.
[cli] rgo - rip grep open
function rgo() {
local input="rg --column --line-number --no-heading --color=always --smart-case --"
: | fzf --ansi --disabled --query "${*:-}" \
--bind "start:reload:$input {q}" \
--bind "change:reload:sleep 0.1; $input {q} || true" \
--delimiter : \
--preview 'bat --color=always {1} --highlight-line {2}' \
--preview-window 'up,60%,border-bottom,+{2}+3/3,~3' \
--bind "enter:become($VISUAL {1})"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment