1
0
mirror of https://github.com/chylex/dotfiles.git synced 2026-04-25 17:12:17 +02:00

Compare commits

...

2 Commits

View File

@@ -75,9 +75,11 @@ sethandler <C-S-W> a:vim
sethandler <C-U> a:vim
sethandler <S-BS> a:vim
sethandler <C-Enter> a:vim
sethandler <D-Enter> a:vim
sethandler <C-Left> a:vim
sethandler <C-Right> a:vim
sethandler <S-Left> a:vim
sethandler <C-Right> a:vim
sethandler <S-Right> a:vim
if &ide =~? 'rider'
@@ -151,7 +153,7 @@ nnoremap d( c[((<Esc>l
" Create lines
nnoremap go o<Esc>$
nnoremap gO O<Esc>$
nnoremap g<CR> i<CR><Esc>l
nnoremap g<CR> i<CR><Left><Esc>
" Edit current line
nnoremap C cc
@@ -252,6 +254,8 @@ nnoremap Z z
" Repurpose 'Enter' for statement completion
nmap <Enter> <Action>(EditorCompleteStatement)
imap <C-Enter> <Action>(EditorCompleteStatement)
imap <D-Enter> <Action>(EditorCompleteStatement)
" Repurpose 'g' for navigation (VimJumpToSource requires a custom version of IdeaVIM)
map gb <Action>(GotoNextBookmark)