Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Escape to IntelliJ IDEA shortcuts from IdeaVim

I'm used to both vim and IntelliJ default hotkeys. I'd like to not to have to change any of them - I'd rather like to be able to use conflicting IntelliJ bindings, like CTRL-P for example, after some kind of escape key.

Conflict balloon and my research wasn't too helpful. Only thing that I've found is that I can turn vim plugin off with a hotkey, and then back on after I'm done, but I have to remember to turn it one every time.

Is there any solution for my problem?

like image 792
Thirteenth Seeker Avatar asked Aug 12 '15 16:08

Thirteenth Seeker


People also ask

How do I escape from terminal in IntelliJ?

The problem is that after IDEA-116221 Escape always switches from the Terminal tool window to the editor. Thus, pressing Escape, then pressing w results in typing w in the editor. Update: the result solution: Go to "Settings | Tools | Terminal" and click "Configure terminal keybindings".

What does Ctrl Alt l do in IntelliJ?

If you choose Code | Reformat Code from the main menu or press Ctrl+Alt+L , IntelliJ IDEA tries to reformat the source code of the specified scope automatically. For more details on how to reformat, or exclude files from formatting, refer toReformat code.

How do I exit Vim in IntelliJ?

After you restart the IntelliJ IDEA, Vim is enabled and the editor starts operating in the Vim mode. To disable it, deselect Tools | Vim in the main menu.

How do I find my shortcuts in IntelliJ?

IntelliJ IDEA includes several predefined keymaps and lets you customize frequently used shortcuts. To view the keymap configuration, open the Settings/Preferences dialog Ctrl+Alt+S and select Keymap. IntelliJ IDEA automatically suggests a predefined keymap based on your environment.


1 Answers

I made .ideavimrc that contains bindings for all conflicted mappings. Maybe it'll be usefull to someone.

imap jj <Esc>  let mapleader = " " map <leader>a :action $SelectAll<CR> map <leader>b :action GotoDeclaration<CR> map <leader>c :action $Copy<CR> map <leader>d :action EditorDuplicate<CR> map <leader>e :action RecentFiles<CR> map <leader>f :action Find<CR> map <leader>g :action GotoLine<CR> map <leader>h :action TypeHierarchy<CR> map <leader>i :action ImplementMethods<CR> map <leader>m :action EditorScrollToCenter<CR> map <leader>n :action FileChooser.NewFolder<CR> map <leader>o :action OverrideMethods<CR> map <leader>p :action ParameterInfo<CR> map <leader>q :action QuickJavaDoc<CR> map <leader>r :action Replace<CR> map <leader>s :action SaveAll<CR> map <leader>t :action Vcs.UpdateProject<CR> map <leader>u :action GotoSuperMethod<CR> map <leader>v :action $Paste<CR> map <leader>w :action EditorSelectWord<CR> map <leader>x :action $Cut<CR> map <leader>y :action EditorDeleteLine<CR> map <leader>[ :action EditorCodeBlockStart<CR> map <leader>] :action EditorCodeBlockEnd<CR> 
like image 51
melihovv Avatar answered Sep 22 '22 03:09

melihovv