Last active
June 1, 2026 00:51
-
-
Save cartok/2436746187e8d2d02558abfcdb31afdc to your computer and use it in GitHub Desktop.
[cli] rgo - rip grep open
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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