如何使用nerdtree创建目录

时间:2010-05-22 17:05:55

标签: vim nerdtree

我一直在使用NERDTree。每次我需要创建一个新目录时,我都需要去终端。有没有一种快速简便的方法来使用NERDTree创建目录。

我看了doc但找不到任何东西。

2 个答案:

答案 0 :(得分:228)

在NERDTree窗口中,按'm';你应该在底部看到一个菜单。输入“a”以添加子节点。现在输入您要创建的目录,确保在末尾添加“/”,否则脚本将创建一个文件。

AFAIK NERDTree无法像'mkdir -p'那样创建父目录。

答案 1 :(得分:5)

m将打开下面的菜单,您可以从操作列表中进行选择。

NERDTree Menu. Use j/k/enter and the shortcuts indicated
==========================================================
> (a)dd a childnode
  (m)ove the current node
  (d)elete the current node
  (r)eveal in Finder the current node
  (o)pen the current node with system editor
  (q)uicklook the current node
  (c)opy the current node
Add a childnode
==========================================================
Enter the dir/file name to be created. Dirs end with a '/'
/Library/WebServer/Documents/new-teacher-center/app/Model/

a可以添加子节点。子节点可以是文件或文件夹,具体取决于是否添加正斜杠(/)。

如果你没有像下面那样添加正斜杠,它会创建一个文件。

Add a childnode
==========================================================
Enter the dir/file name to be created. Dirs end with a '/'
/Library/WebServer/Documents/new-project/app/Model/file

如果您添加如下的正斜杠,则会创建一个文件夹。

Add a childnode
==========================================================
Enter the dir/file name to be created. Dirs end with a '/'
/Library/WebServer/Documents/new-project/app/Model/folder/