dotfiles/fish/.config/fish/functions/vz.fish

7 lines
90 B
Fish
Raw Normal View History

2018-08-27 05:13:09 +00:00
function vz
set file (fzf --height 40% --reverse)
if test -f $file
vim $file
end
end