Quoted Printable to Plain
Talk0
1,599pages on
this wiki
this wiki
Tip 1012 Printable Monobook Previous Next
created October 6, 2005 · complexity intermediate · author Bertram Scharpf · version 6.0
Sometimes I pipe an email into Vim and then I cannot read it because it is encoded in quoted printable. Mentioning this in my vimrc helps:
nnoremap <Leader>Q :%s/=\(\x\x\<BAR>\n\)/\=submatch(1)=='\n'?'':nr2char('0x'.submatch(1))/ge<CR>
vnoremap <Leader>Q :s/=\(\x\x\<BAR>\n\)/\=submatch(1)=='\n'?'':nr2char('0x'.submatch(1))/ge<CR>