I am learning vim and slowly but surely adapting my vimrc.
I am moving around with "jlim" and entering insert mode with k. All I want to do is combine actions with text-objects.
But when I want to change inner word (should be c k w) for me I go one line up instead of change the inner word. I have checked :index and :c and :iw but I dont understand how to map my actions to inner word??
vimrc:
`" set move keys in vim
map m <down>
map i <up>
map j <left>
map l <right>
`
greetings
SOLUTION to "{action} {text object}" while k is insert:
" set move keys in vim
nnoremap m <down>
nnoremap i <up>
nnoremap j <left>
nnoremap l <right>
" n for normal mode and noremap to not make k map to up
nnoremap k i