Combining two operators in Evil-mode Emacs
- by Dyslexic Tangent
In vim I've remapped > and < when in visual mode to >gv and <gv respectively, like so:
vnoremap > >gv
vnoremap < <gv
Since my target for this question are folks experienced with emacs and not vim, what > and < do is indent/dedent visually selected text. What gv does is reselect the previously selected text. These…