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

7 lines
217 B
Fish

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
nvim -R $result
end
end