1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-02 10:34:04 +02:00

Merge pull request from kun-codes/create-files-and-directories

add NERDTree action to create new files and directories
This commit is contained in:
Alex Pláte 2024-06-21 16:53:01 +03:00 committed by GitHub
commit fe8e8ccc3e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -478,6 +478,8 @@ internal class NerdTree : VimExtension {
NerdAction.ToIj("SynchronizeCurrentFile"),
)
registerCommand("NERDTreeMapToggleHidden", "I", NerdAction.ToIj("ProjectView.ShowExcludedFiles"))
registerCommand("NERDTreeMapNewFile", "n", NerdAction.ToIj("NewFile"))
registerCommand("NERDTreeMapNewDir", "N", NerdAction.ToIj("NewDir"))
registerCommand("NERDTreeMapDelete", "d", NerdAction.ToIj("\$Delete"))
registerCommand("NERDTreeMapRefreshRoot", "R", NerdAction.ToIj("Synchronize"))
registerCommand("NERDTreeMapMenu", "m", NerdAction.ToIj("ShowPopupMenu"))