diff --git a/vim/creating-non-existent-directories.md b/vim/creating-non-existent-directories.md index a69fd69..07b2468 100644 --- a/vim/creating-non-existent-directories.md +++ b/vim/creating-non-existent-directories.md @@ -1,6 +1,6 @@ # Creating Non-Existent Directories -When creating new files from withing vim, using `:e`, you may find yourself +When creating new files from within vim, using `:e`, you may find yourself creating that file in a directory that doesn't yet exist. Vim will tell you as much if you then try to save that file. To get around this, I have often shelled out with `:!mkdir %:h`. This is a bit awkward to type though.