Temporary disable IdeaVim to fire off a single IDE action #1579
-
|
Is there a way to temporary disable IdeaVim, wait for an IDE action though a shortcut, and then re-enable IdeaVim? This would be useful for firing off single editor actions, like "Run" through Surfingkeys has this implemented in something called PassThrough mode and I use it all the time. The idea is that you can press |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
I'm afraid there isn't a way to do this. It's been suggested before, a kind of "IDE leader" (VIM-2763), but no attempt has been made at implementing it. One workaround is that it's possible to create a Vim mapping to an IDE action, such as |
Beta Was this translation helpful? Give feedback.
-
|
I see, thanks for the information. I think I'll go with a double-leader or similar approach and bind IDE actions to that then (e.g. |
Beta Was this translation helpful? Give feedback.
I'm afraid there isn't a way to do this. It's been suggested before, a kind of "IDE leader" (VIM-2763), but no attempt has been made at implementing it.
One workaround is that it's possible to create a Vim mapping to an IDE action, such as
map <leader>d <Action>(Debug)ormap <leader>r <Action>(Run). There's more information here.