mkdir from MacVim

macvim, vim

Solution

You can execute any shell command with ! like this:

:!mkdir YOURDIR

Read more with

 :help !

Problem

How do I create a directory from MacVim? I can use `:e` to create file, but I am struggling to find out how to create a directory. I have tried `mkdir` from `:`, but it does not work.

Original source