I often create new files with the name of today's date. So, I would like to make this a command that calls the shell date command. The date command I use is:
date +%Y-%m-%d-%B%d).md
I tried to call this same shell command from within Vim with this custom command in my .vimrc:
command Post e !date +%Y-%m-%d-%B%d.md
But that doesn't work because % means the current filename in Vim and the desired filename isn't created.