You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
" .ideavimrc is a configuration file for IdeaVim plugin. It uses
" the same commands as the original .vimrc configuration.
" You can find a list of commands here: https://jb.gg/h38q75
" Find more examples here: https://jb.gg/share-ideavimrc
"" -- Suggested options --
" Show a few lines of context around the cursor. Note that this makes the
" text scroll if you mouse-click near the start or end of the window.
let mapleader = " "
set nu
set so=5
set relativenumber
" set clipboard+=unnamedplus
set incsearch
" set showmode
" action idea action is map
map r (ReformatCode) | (OptimizeImports)
map d (DebugClass)
map i (OptimizeImports)
map c (Stop)
map f (GotoImplementation)
map b (Back)
map t (Terminal.OpenInTerminal)
map rr (RenameElement)
map cf (CompileFile)
map sf (Synchronize)
map m (ExtractMethod)
map sb (BytecodeViewer)
map a (Annotate)
map h (Vcs.ShowTabbedFileHistory)
map (GotoNextError)
map e (GotoNextError)
" map (GotoNextError)
map sv (SelectInProjectView)
map z (ToggleZenMode)
" map v (IntroduceVariable)
map v (ShowIntentionActions)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
" .ideavimrc is a configuration file for IdeaVim plugin. It uses
" the same commands as the original .vimrc configuration.
" You can find a list of commands here: https://jb.gg/h38q75
" Find more examples here: https://jb.gg/share-ideavimrc
"" -- Suggested options --
" Show a few lines of context around the cursor. Note that this makes the
" text scroll if you mouse-click near the start or end of the window.
let mapleader = " "
set nu
set so=5
set relativenumber
" set clipboard+=unnamedplus
set incsearch
" set showmode
" Insert mode shortcut
inoremap
inoremap
inoremap
inoremap
inoremap jj
nnoremap U
nnoremap ) $
" action idea action is map
map r (ReformatCode) | (OptimizeImports)
map d (DebugClass)
map i (OptimizeImports)
map c (Stop)
map f (GotoImplementation)
map b (Back)
map t (Terminal.OpenInTerminal)
map rr (RenameElement)
map cf (CompileFile)
map sf (Synchronize)
map m (ExtractMethod)
map sb (BytecodeViewer)
map a (Annotate)
map h (Vcs.ShowTabbedFileHistory)
map (GotoNextError)
map e (GotoNextError)
" map (GotoNextError)
map sv (SelectInProjectView)
map z (ToggleZenMode)
" map v (IntroduceVariable)
map v (ShowIntentionActions)
" command
command! MP !mvn clean package -DskipTests
command! MC !mvn clean
command! JAVAC !javac -encoding utf-8 %
" Highlight copied text
Plug 'machakann/vim-highlightedyank'
" Commentary plugin
Plug 'tpope/vim-commentary'
Beta Was this translation helpful? Give feedback.
All reactions