1
0
mirror of https://github.com/chylex/dotfiles.git synced 2026-06-14 17:02:34 +02:00

Compare commits

...

2 Commits

View File

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