- Create a macro that does "paste unformatted"
- Assign it to Ctrl-V
Couldn't be simpler.
Sub PasteUnformatted()
Selection.PasteAndFormat (wdFormatPlainText)
End Sub
This blog will be a generous mix of rants and geeky information that I couldn't find a decent web reference for so I had to work it out myself. If you're not interested in something, I'd recommend you subscribe using the categories on the right.
Sub PasteUnformatted()
Selection.PasteAndFormat (wdFormatPlainText)
End Sub