Copy and paste plain text only in OSX?

79,626

Solution 1

Usually, OS X applications allow you to paste without style using V. This is not necessarily supported everywhere though.

If you simply want to get plain text from whatever was in the clipboard, and then put it in the clipboard again, you could for example run the following command from a Terminal:

pbpaste | pbcopy

This will get rid of rich text formatting. You could probably wrap this in a Service using Automator.app to have it accessible via keyboard shortcut.

Solution 2

I'm extremely happy to have found a way to do it without using crazy shortcuts (that would annoy me more than the formatted text).

As mmdei is writing at http://ask.metafilter.com/187733/OSX-How-to-copy-plaintext-always-everywhere-without-exception

Open 'System Preferences'

Select 'Keyboard'

Select tab 'Keyboard Shortcuts'

Select 'Application Shortcuts' from the left listbox Click '+' below right listbox

Select 'All Applications' for 'Application' input box Type 'Paste and Match Style' into the 'Menu Title' input box In the 'Keyboard Shortcut' input box, pretend that you are about to paste something by typing command-v. There should now be the cloverleaf command sign followed by a -v in this box. Click add.

Victory! Thanks. I should have done this myself a decade ago. =)

ADDITION

in case you need to paste formatted text, use right click - Paste.

Solution 3

As @slhck pointed out, V is a useful key combination that will "Paste and Match Style" in a number of apps, such as Safari, TextEdit, Mail, Messages, Notes, and even Microsoft Word (well, it does a "Paste and Match Formatting" in Word, but the result is identical as far as I can tell). One annoyance of Word's approach is that if the text you've copied is not itself styled, the V combination does nothing. So that's an obstacle to relying on V to always paste unstyled text. (In Apple apps, V will conveniently mimic V if the text is unstyled.)

As far as I can tell, of Adobe CS 6, only InDesign has a "Paste without Formatting" option (V; it uses V for "Paste in Place"). Although you could change those keystrokes with the help of System Preferences > Keyboard > Keyboard Shortcuts, that won't help you in Illustrator.

Thus, for a more all-inclusive solution, here are two methods, the first fast and graceful and the other quick and dirty.

  1. Install a program that offers clipboard management (of which there are many). For example, I use the free, simple, open-source app FlyCut, which as far as I can tell always pastes unstyled text. If you adopt this solution, it sounds like you might be interested in turning off the "Sticky bezel" (in FlyCut Preferences > General) and setting your hotkey to something like V (that's option+V) or CtrlV (in FlyCut Preferences > Hotkeys). As long as those keystrokes aren't already in use for another app, the result will be that your new two-key combination will paste unstyled text system-wide. (I could not get V to work properly with FlyCut, however, but other clipboard manager apps may do better—you could try Alfred, Quicksilver, ClipMenu, or others, though I don't know that all paste unstyled text only as with FlyCut.)
  2. For a quick-and-dirty way of clearing the styles from copied text, you can paste copied text with styles into a web browser's address bar and then copy/cut out of the address bar (although this trick should work with any field that only accepts plain text only). This works with the Safari, Chrome, and Firefox address bars (at least). Of course, this approach is far less elegant and more time-consuming than relying on a solution like #1, but it has the advantage of being easy and feasible on nearly any computer, even one you can't / don't want to install new software on.

Hope that helps!

Solution 4

Many applications (like Alfred) that provide a clipboard history only keep the plain text versions of copied items. So you can paste from clipboard history when the frontmost application doesn't support ⌥⇧⌘V.

Another option would be to assign a shortcut to a script like this:

set the clipboard to (the clipboard)

You could also try creating ~/Library/KeyBindings/ and saving a property list like this as DefaultKeyBinding.dict:

{
    "~@V" = pasteAsPlainText:;
}

It doesn't work in Illustrator though. Most applications that support custom keybindings and rich text also have a menu bar item for pasting as plain text.

Solution 5

For a 2021 solution:

I found a free app appropriately named "Paste Plain Text." So far it's working great and is totally seamless. It does what it claims and nothing more.

https://apps.apple.com/us/app/paste-plain-text/id1407015686?mt=12

Share:
79,626

Related videos on Youtube

nipponese
Author by

nipponese

I focus on learning how to learn.

Updated on September 18, 2022

Comments

  • nipponese
    nipponese almost 2 years

    My problem: I copy something from a webpage or Illustrator, then paste it into an email or another Illustrator document and the styles are carried over from the original doc when I just want the text to conform to the format of the new document.

    Is there a way to force OSX to copy and paste to only read the the plaintext of my selection?

    • Job AJ
      Job AJ almost 11 years
      FYI, dragging text from Firefox pastes unstyled.
  • nipponese
    nipponese over 11 years
    Hmm, now if I could just run this as a shell script every time I copy something from Illustrator....
  • Blazing Bonfire
    Blazing Bonfire over 11 years
    There's an answer, thanks to the Keyboard & Mouse pane in System Preferences. If you click the Keyboard Shortcuts tab, you can assign "Paste Without Formatting" and/or "Paste and Match Style" to Command + V for all applications. tuaw.com/2009/07/07/…
  • slhck
    slhck over 11 years
    @IanAtkin That only works if the application supports this special paste mode in the first place.
  • slhck
    slhck over 11 years
    @nipponese No idea how to set that up to be honest, sorry. But in theory, does that approach work?
  • nipponese
    nipponese over 11 years
    @slhck Unfortunately I need the output to paste into Adobe Illustrator and there isn't a supported special paste command.
  • Dave Nelson
    Dave Nelson almost 11 years
    Thank you for mentioning FlyCut, it is working great for me.
  • Admin
    Admin over 10 years
    Update for how to do in Mavericks (cos I noticed it was different): System Preferences > Keyboard > 'Shortcuts' tab > 'App shortcuts' left pane item > click on + button > enter in the 'Menu Title:' box (and without quotes) 'Paste and Match Style', and enter the desired hotkey in the next one, click 'Add' and job is done.
  • yaskovdev
    yaskovdev over 6 years
    Great answer! Small problem I faced: if you have UI language different from English, instead of "Paste and Match Style" you have to type the name of the menu item in your language.
  • keul
    keul over 5 years
    I also use this approach too, but it's not always working if you have a multiline text in the clipboard
  • Andrzej Martyna
    Andrzej Martyna over 5 years
    To find name of the menu item in your language: (1) open any app with "Edit" menu equivalent like Apple Notes, Safari, Text Editor, etc., (2) open this menu and see what is visible just under "Paste" equivalent. I have, for example "Wklej i dostosuj styl".
  • Hayley
    Hayley about 5 years
    I never realised that pbpaste and pbcopy exist! These will be very helpful for many uses. Thanks and an upvote!
  • Micah B.
    Micah B. over 4 years
    Still sucks, because while it matches the font, it KEEPS the formatting such as bold, colors.