dotfiles/fish/.config/fish/functions/vz.fish
2018-08-27 01:13:45 -04:00

7 lines
90 B
Fish

function vz
set file (fzf --height 40% --reverse)
if test -f $file
vim $file
end
end