Sto usando NERDTree da un po '. Ogni volta che devo creare una nuova directory, devo andare al terminale. Esiste un modo semplice e veloce per creare una directory usando NERDTree.
Ho letto il documento ma non sono riuscito a trovare nulla.
Sto usando NERDTree da un po '. Ogni volta che devo creare una nuova directory, devo andare al terminale. Esiste un modo semplice e veloce per creare una directory usando NERDTree.
Ho letto il documento ma non sono riuscito a trovare nulla.
Risposte:
Nella finestra NERDTree, premere 'm'; dovresti vedere un menu in fondo. Digita "a" per aggiungere il nodo figlio. Ora inserisci la directory che vuoi creare, assicurandoti di aggiungere un '/' alla fine, altrimenti lo script creerebbe un file.
AFAIK NERDTree non può creare directory principali come 'mkdir -p'.
Premere per m
aprire un menu in basso ed è possibile selezionare da un elenco di azioni.
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/
Premendo a
sarebbe possibile aggiungere un nodo secondario. Un nodo figlio può essere un file o una cartella a seconda che si aggiunga una barra (/) o meno.
Se non aggiungi una barra come sotto, creerebbe un file.
Add a childnode
==========================================================
Enter the dir/file name to be created. Dirs end with a '/'
/Library/WebServer/Documents/new-project/app/Model/file
Se aggiungi una barra come sotto, creerebbe una cartella.
Add a childnode
==========================================================
Enter the dir/file name to be created. Dirs end with a '/'
/Library/WebServer/Documents/new-project/app/Model/folder/
:!mkdir -p path/to/dest
.