Comment Re:Need a way to un-highlight (Score 1) 702
When pasting I always find myself in insert mode when I remember I need to
:map <F10> :set paste<CR>
:map <F11>:set nopaste<CR>
:imap <F10> <C-O>:set paste<CR>
:imap <F11> <nop>
:set pastetoggle=<F11>
F10 to turn on paste mode and F11 to turn it off, and it works in command mode and insert mode. That is straight out of the vim help files if you type