From 2be6426abc0f5f56e0a0b34065cc05874bbf8040 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Mon, 23 Nov 2015 21:21:53 -0600 Subject: [PATCH] Fix a typo. --- vim/creating-non-existent-directories.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.