How to shortcut diamond character in vim
- by temujin.ya.ru
In the dictionary file, which I am editing I often need to insert character "?" on place of <. Is there a way to map "?" to some key so that I press "r" for replace and then my_shortcut to have < replaced by "?"?
I found a way to make imap mapping in .vimrc:
:imap <> ?
But changing to inset mode is sub-optimal, would that be possible to make it all in replace mode and what should I write in .vimrc for that?