What is the keyboard shortcut to paste without formatting
Learn the keyboard shortcuts to paste without formatting across Windows and macOS, plus practical code examples, app-specific tips, and testing workflows for clean, plain-text pastes.

According to Keyboard Gurus, paste without formatting is typically achieved with a paste-as-plain-text shortcut. On Windows, try Ctrl+Shift+V in many apps and browsers; on macOS, Cmd+Shift+V is common. Some apps use Cmd+Option+Shift+V or a dedicated Paste Special option. When in doubt, use Paste Special → Unformatted Text. This quick guide explains how it works across platforms and popular apps.
What is paste without formatting?
Pasting content without its original formatting means inserting plain text, with no fonts, colors, links, or embedded media carried over from the source. This is essential when you want a clean, consistent appearance in your document, code editor, or email. The need arises frequently when copying from web pages, PDFs, or rich text editors into plain-text destinations like logs, wikis, or task trackers. According to Keyboard Gurus, paste without formatting is often achieved with a paste-as-plain-text shortcut, but the exact behavior depends on the app and platform. In this section we cover the general concept, why formatting can cause issues, and how to test the behavior in common environments.
# Example of formatted paste
This is bold and linked: https://example.comNotice that the above snippet carries bold markup and a link. When you paste it, the receiving editor should drop those attributes and insert just the text. In practice you program or configure the shortcut to intercept the paste event, retrieve text/plain from the clipboard, and insert it. Below are representative approaches for web apps, desktop apps, and OS-level workflows, plus caveats you should know.
Alternatives and caveats:
- Some apps ignore the shortcut in certain contexts (e.g., password fields).
- In corporate environments, admin policies may disable custom paste shortcuts.
- If you frequently paste plain text, consider creating a small utility to sanitize clipboard data.
descriptionBlockedForSeo":false
Steps
Estimated time: 1 hour 30 minutes
- 1
Identify target apps
Survey the tools you use most (browser, editor, messaging, and notes apps) to determine whether they support paste-as-plain-text and which shortcut they use. This ensures your workflow remains consistent across workstreams.
Tip: Start with the apps you paste into most frequently to maximize impact. - 2
Test platform shortcuts
In a test document, try the standard Windows and macOS shortcuts (Ctrl+Shift+V and Cmd+Shift+V). If the app supports alternate shortcuts, note them for quick reference.
Tip: Document each shortcut variant to avoid confusion later. - 3
Implement web app interception (optional)
If you build forms or editors, add a paste handler that grabs text/plain from the clipboard and inserts plain text, discarding rich content.
Tip: Use e.clipboardData.getData('text/plain') to ensure text-only data. - 4
Provide user-facing options
Offer a visible Paste as Plain Text option in menus or buttons, especially for users on apps with inconsistent shortcuts.
Tip: Accessibility: announce the paste-action for screen readers. - 5
Test across platforms
Repeat tests on Windows, macOS, and the target browser/OS combinations to verify consistent plain-text pasting.
Tip: Include some edge cases like copied HTML or pasted images to confirm clean behavior. - 6
Document and monitor
Create a quick-reference guide for teammates and track any app updates that alter paste behavior.
Tip: Revisit quarterly to keep the guide current.
Prerequisites
Required
- Required
- Required
- A modern browser (Chrome/Edge/Safari/Firefox)Required
- A text editor or word processor to test pasteRequired
- Basic knowledge of clipboard operationsRequired
Optional
- Optional: app-specific shortcut settings to test (Google Docs, Word, Notes)Optional
Keyboard Shortcuts
| Action | Shortcut |
|---|---|
| Paste as plain textCommon across browsers and many apps | Ctrl+⇧+V |
| Paste as plain text (macOS alternative)Some apps offer an alternative variant; if not supported, use the standard shortcut | — |
Got Questions?
What is the keyboard shortcut to paste without formatting?
The universal approach is to use Ctrl+Shift+V on Windows and Cmd+Shift+V on macOS. Some apps offer alternative shortcuts like Cmd+Option+Shift+V. If a shortcut isn’t available, use the app’s Paste Special or Unformatted Text option.
Typically, you use Ctrl+Shift+V on Windows or Cmd+Shift+V on macOS to paste as plain text. If that doesn’t work, look for Paste Special or Unformatted Text in the app’s menu.
Do all apps support pasting as plain text?
Not all apps support plain-text pasting by shortcut. Web apps and modern editors often support Ctrl+Shift+V or Cmd+Shift+V, but some tools rely on menus or custom shortcuts. It’s best to test your frequently used applications.
Many apps support plain paste, but some rely on menus or different shortcuts. Check each app’s paste options.
How can I paste without formatting on mobile devices?
Mobile devices typically support paste as plain text through the action sheet in iOS and Android apps. Look for a Paste as Plain Text option in the pop-up menu after you paste, or use a browser extension/tool that offers plain paste.
On mobile, use the paste options that appear after you paste, usually labeled as Paste as Plain Text or Plain Text.
Why does paste sometimes keep formatting?
Formatting can persist if the source content includes styles or if the destination editor ignores plain-text rules. Some apps ignore the command for security or compatibility reasons, so you may need to use Paste Special or a dedicated unformatted paste feature.
Sometimes formatting survives because the app doesn’t override the rich content. Look for a plain-text option in the menu.
What should I do if I paste formatted content by mistake?
If you paste with formatting by mistake, immediately undo (Ctrl+Z / Cmd+Z) and re-paste using the plain-text shortcut or menu option. Consider building a quick utility to sanitize clipboard data before insertion.
If formatting slips in, undo and re-paste as plain text using the appropriate shortcut or menu option.
Can I implement a universal plain-paste feature in my app?
Yes. Implement a paste event handler that reads text/plain from the clipboard and inserts sanitized text. This approach provides consistent results across different editors and reduces formatting surprises.
You can implement a paste listener that always uses text/plain so users get clean text every time.
What to Remember
- Use Windows: Ctrl+Shift+V; macOS: Cmd+Shift+V for paste without formatting
- Test app-specific variations and use Paste Special when needed
- Intercept paste events in code to sanitize clipboard data
- Document a quick-reference for your team and test across platforms