Last Updated: February 25, 2016
·
675
· icholy

vim open last modified file

Here's an alias which opens the last modified file in the current directory in vim.

alias vimp='vim $(ls -ct | head -1)'