7 lines
257 B
Fish
Raw Normal View History

2021-04-28 08:58:14 -04:00
function recent --description "Open a recent file in Vim"
2021-05-04 09:47:58 -04:00
set vimfile (fd -t f --exec stat -f "%m%t%N" | sort -nr | cut -f2 | fzf)
and set vimfile (echo $vimfile | tr -d '\r')
and commandline -r "vim $vimfile"
and commandline -f execute
2021-04-28 08:58:14 -04:00
end