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")?
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")?
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
.