Tôi đã sử dụng NERDTree được một thời gian. Mỗi khi tôi cần tạo một thư mục mới, tôi cần phải đi đến terminal. Có cách nào nhanh chóng và dễ dàng để tạo một thư mục bằng NERDTree.
Tôi đọc tài liệu nhưng không tìm thấy gì.
Tôi đã sử dụng NERDTree được một thời gian. Mỗi khi tôi cần tạo một thư mục mới, tôi cần phải đi đến terminal. Có cách nào nhanh chóng và dễ dàng để tạo một thư mục bằng NERDTree.
Tôi đọc tài liệu nhưng không tìm thấy gì.
Câu trả lời:
Khi ở cửa sổ NERDTree, bấm 'm'; bạn sẽ thấy một menu ở phía dưới. Nhập 'a' để thêm mã con. Bây giờ hãy nhập thư mục bạn muốn tạo, đảm bảo thêm '/' ở cuối, nếu không tập lệnh sẽ tạo tệp.
AFAIK NERDTree không thể tạo các thư mục mẹ như 'mkdir -p'.
Nhấn m
sẽ mở một menu bên dưới và bạn có thể chọn từ danh sách các hành động.
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/
Nhấn a
sẽ cho phép bạn thêm một mã con. Mã con có thể là một tệp hoặc thư mục tùy thuộc vào việc bạn có thêm dấu gạch chéo (/) hay không.
Nếu bạn không thêm dấu gạch chéo như bên dưới, nó sẽ tạo một tệp.
Add a childnode
==========================================================
Enter the dir/file name to be created. Dirs end with a '/'
/Library/WebServer/Documents/new-project/app/Model/file
Nếu bạn thêm một dấu gạch chéo như bên dưới, nó sẽ tạo một thư mục.
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
.