[vim] nerdtree를 사용하여 디렉토리를 만드는 방법

한동안 NERDTree를 사용하고 있습니다. 새 디렉토리를 만들어야 할 때마다 터미널로 이동해야합니다. NERDTree를 사용하여 디렉토리를 빠르고 쉽게 작성할 수있는 방법이 있습니까?

나는 문서를 읽었 지만 아무것도 찾을 수 없었다.



답변

NERDTree 창에서 ‘m’을 누르십시오. 하단에 메뉴가 나타납니다. 자식 노드를 추가하려면 ‘a’를 입력하십시오. 이제 만들려는 디렉토리를 입력하고 끝에 ‘/’를 추가하십시오. 그렇지 않으면 스크립트가 파일을 작성합니다.

AFAIK NERDTree는 ‘mkdir -p’와 같은 상위 디렉토리를 작성할 수 없습니다.


답변

를 누르면 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/


답변