When I do <c-o><c-o><c-o>
, and keep the control key pressed, it will jump 3 times backwards in the jumplist but if I do noremap <leader>o <c-o>
then <leader>o<leader>o<leader>o
, and keep the leader key pressed as I did with control, it will move backward the first time then it enter in editing mode and add an o. Leader key is ignored if we keep it pressed.
Is there a solution?
<c-v>
and then<c-o>
then you see what your vim sees. it is one character (probably^O
) which is sent to vim once you press theo
. Modifierkeys just enter a waiting state, as long asctrl
is pressed,^O
will be sent instedo
if you presso
– Gauthierctrl+shift+o
does not work either. vim recieves the same keycode as forctrl+o
(maybe possible with that #1507264). As ingo says below, easiest thing is to map it to another modifier combo – Gauthier