mirror of
https://github.com/Ascyii/scripts.git
synced 2026-01-01 04:44:24 -05:00
9 lines
228 B
Bash
Executable File
9 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Usage: rgnvim KEYWORD
|
|
rg --vimgrep "$@" |
|
|
fzf --delimiter : --nth 1,2,3,4 \
|
|
--preview 'bat --style=numbers --color=always --highlight-line {2} {1}' |
|
|
awk -F: '{print $1, $2}' |
|
|
xargs -r sh -c 'nvim +"$1" "$0"'
|