If I invoke vim foo/bar/somefile but foo/bar don't already exist, Vim refuses to save.
I know I could switch to a shell or do :!mkdir foo/bar from Vim but I'm lazy :)
Is there a way to make Vim do that automatically when it saves the buffer?
Note the conditions: Update: sligtly better solution that also checks for non-empty buftype and uses
|
|||||||||||||||
|
|
Based on the suggestions to my question, here's what I ended up with:
This defines the |
||||
|
|
|
I made |
|||
|
|
|
I added this to my ~/.vimrc
If I need to create the directory I'm in I type |
|||
|
|
|
I think I managed to do this in three lines, combining what others are saying on this answer. This seems to do the trick:
It attempts to create the folder automatically when saving a buffer. If anything bad happens (i.e. permission issues) it will just shut up and let the file write fail. If anyone sees any obvious flaws, please post a comment. I'm not very versed in vimscript. EDIT: Notes thanks to ZyX
|
|||||||||||
|
mkdir -p %:his better because it works for nested non-existing paths, doesn’t raise an error when the path already exists, and%:his the full path of the current file. However, I don’t know how to invoke this automatically. Normally, this is done with automcommands but theBufWritePreevent doesn’t seem to work here. – Konrad Rudolph Nov 27 '10 at 17:11writeand calls the system tomkdir -pondirnameotherwise, map it toW... I'm too lazy to search for the syntax and to post it as an answer... Sorry – khachik Nov 27 '10 at 17:16:wtomkdir -p %:hfollowed by the builting:write– Damien Pollet Nov 27 '10 at 17:47