dotfiles/fish.configlink/functions/edit.fish
2021-05-04 09:48:03 -04:00

7 lines
193 B
Fish

function edit --description "Open a file in Vim"
set vimfile (fzf)
and set vimfile (echo $vimfile | tr -d '\r')
and commandline -r "vim $vimfile"
and commandline -f execute
end