tags:

views:

42

answers:

2

I know how to create rename, delete and move files in NERDTree (just pressing m + a, d, or m). But I can't figure out how to create a folder.

Does anybody know how to do this on NERDTree (or just in vim's native "way")?

A: 

Well, you can always do:

:!mkdir <directory>

Does that help?

psmears
+1  A: 

You use m + a and put a trailing / on the name of the child node you want to create.

E.g., m + a + foo creates the file foo. m + a + foo/ creates the directory foo.

jamessan
I was looking for that, thanks!
janoChen