1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-02-26 14:46:00 +01:00

Disable speed search in Project tool window when NERDTree is enabled

This commit is contained in:
chylex 2024-02-15 05:58:16 +01:00
parent 00a4f4d919
commit d61241a73b
Signed by: chylex
GPG Key ID: 4DE42C8F19A80548

View File

@ -502,6 +502,13 @@ internal class NerdTree : VimExtension {
}
},
)
for (c in ('a'..'z') + ('A'..'Z')) {
val ks = KeyStroke.getKeyStroke(c)
if (ks !in actionsRoot) {
registerCommand(c.toString(), NerdAction.Code { _, _, _ -> })
}
}
}
companion object {