DEV Community

Discussion on: Do you know Vim can execute normal mode command while in insert mode?

Collapse
 
kr1ssxd profile image
Kriss

Thx for sharing !

What I find helpful is mapping some combinations to shortcuts in insert mode to ease cursor movement and/or scrolling :

" Movement in insert mode
inoremap <C-h> <C-o>h
inoremap <C-j> <C-o>j
inoremap <C-k> <C-o>k
inoremap <C-l> <C-o>l
" Also allow line-wise scrolling
inoremap <C-e> <C-o><C-e>
inoremap <C-y> <C-o><C-y>
Collapse
 
iggredible profile image
Igor Irianto

Woah. This is mind-blowing. I'll have to try this!