vote up 4 vote down star
2

Is there any way to force Visual Studio to copy selected code to the clipboard as unformatted text?

When I am copy-pasting code into Word or more often Outlook I have to do it via Notepad to get rid of the formatting...there has to be an easier way!

flag

77% accept rate

6 Answers

vote up 2 vote down check

Visual Studio does put unformatted text on the clipboard, but it also puts formatted text. (The clipboard supports multiple simultaneous formats, and the OS assumes that they're simply different representations of the same data, although there's no technical enforcement of that point.)

The application you're using to paste then chooses its preferred format. In Word, and maybe Outlook as well, there is a "Paste Special" command that allows you to choose which format you want to use.

link|flag
Paste Special is the way I do it – Rhys Evans Feb 5 at 15:59
For some reason "Paste Special" always seems to be disabled in Outlook 2003 – Richard E Feb 6 at 9:14
It's enabled for me in Outlook 2007, so I don't know what else to say. Good luck. – Rob Kennedy Feb 6 at 18:23
Paste Special is not present in many apps. – Patrick Szalapski Aug 6 at 21:17
Patrick, the applications that don't support "paste special" are also usually the ones that don't support formatted text anyway. They'll always select the unformatted text because that's the only thing they check for and the only thing they support. – Rob Kennedy Aug 6 at 22:04
show 1 more comment
vote up 1 vote down

When I do it choosing the little pop-up menu option attached to the wee clipboard item "Match Destination Formatting" does the trick for me.

link|flag
Office 2003 features that option in Word, but not Outlook. (I think that Outlook 2007 has it though...) – Richard E Feb 6 at 9:12
Well why not set the format of the mail to plain text? Or do you have some fancy signature with bold and hyperlinks and what have you? – One Monkey Feb 6 at 9:47
Fancy signature...oh yes! Our corporate standard signature uses Arial in a specific shade of blue, formatted in an HTML table with our company logo... – Richard E Feb 6 at 17:58
Bah, oh well, via Notepad seems to be it then... – One Monkey Feb 9 at 9:47
vote up 1 vote down

You might find http://www.extrabit.com/plaintextclipboard/ to be a useful tool. Some applications have a paste option which strips formatting, but what you really need is a copy operation that strips formatting, which VS does not offer.

link|flag
I've seen this called a "clipboard scrubber". A similar program is ClipboardFusion - binaryfortress.com/clipboardfusion . Instead of copy-paste, the operation becomes copy-paste-realize it is ugly-scrub clipboard-paste. – Patrick Szalapski Aug 6 at 21:07
Or PureText, as another answer suggested. – Patrick Szalapski Aug 6 at 21:19
vote up 0 vote down

This Microsoft Office site offers a workaround that involves writing a macro to replace ctrl+v functionality to paste plain text all the time, but that may not be what you want. You can alternatively remap an unused shortcut (ctrl+?) to provide you with this functionality so you don't have to keep enabling / disabling the macro.

link|flag
vote up 4 vote down

My department uses PureText. Sits in the system tray; copy text, click-it - strips all formatting leaving the plain-vanilla text. I'm sure it's much like PlainTextClipboard.

"PureText is basically equivalent to opening Notepad, doing a PASTE, followed by a SELECT-ALL, and then a COPY. The benefit of PureText is performing all these actions with a single Hot-Key and having the result pasted into the current window automatically."

The goad for this was flaky Lotus Notes; likes to crash when pasting HTML-marked-up-text that I innocently copied from a web-page....

link|flag
vote up 0 vote down

Clipboard recorder will let you paste things in plain or formatted text. I used it every single day; it's one of the most useful tools I have. It's become a crutch!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.