dotfiles/fish/.config/fish/functions/rfc.fish

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
262 B
Fish
Raw Normal View History

function rfc --description 'Search for string in RFC documents and open'
if test -e ~/rfc
rg --files-with-matches $argv ~/rfc | fzf --preview='less {}' | read -l result
if test -n "$result"
nvim -R $result
end
end
end