Add ideavimrc config for rider

pull/2/head
Ensar Sarajčić 2022-03-08 20:29:55 +01:00
parent 2a2ae3450d
commit b2d14deb87
1 changed files with 7 additions and 2 deletions

View File

@ -31,7 +31,11 @@ nnoremap <leader>dc :action ChooseDebugConfiguration<CR>
nnoremap <leader>ac :action ShowIntentionActions<CR>
command! Start action Run
command! A action GotoTest
if &ide =~? 'rider'
command! A action SwitchHeaderSource
else
command! A action GotoTest
endif
command! Scratch action NewScratchBuffer
command! Ex NERDTree
command! Gw action Git.Add
@ -43,3 +47,4 @@ command! Gblame action Annotate
command! TODO action ActivateTODOToolWindow
command! te action ActivateTerminalToolWindow
command! Sync action Android.SyncProject
command! Reformat action ReformatCode