Replies: 1 comment 5 replies
-
I wrote a separate plugin for this https://github.com/Mishkun/ataman-intellij |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I really enjoy spacemacs-esque config where every non-editing command (e.g. refactor/split/run) starts with in normal mode. However, leader key (and everything ideaVim related) works only when focusing editor. If focusing other tool window, these magic leader combinations do not work. It would be good to add an option to start leader sequences from any window.
Looks like It could be implemented by adding some shortcut on vim plugin startup and verifying for active speed searches. I started to implement this by myself, but I struggle with two questions:
JComponent
to register shortcut globally withEventFacade.getInstance().registerCustomShortcutSet
?VimPlugin.getKey().getKeyMapping
gets only keystrokes list, but do not interprets themBeta Was this translation helpful? Give feedback.
All reactions