Different platforms use different keys. Here's the complete reference for copy, paste, cut, and select-all on every OS.
| Action | Windows / Linux | macOS | ChromeOS |
|---|---|---|---|
| Copy | Ctrl+C | ⌘+C | Ctrl+C |
| Cut | Ctrl+X | ⌘+X | Ctrl+X |
| Paste | Ctrl+V | ⌘+V | Ctrl+V |
| Paste as plain text | Ctrl+Shift+V | ⌘+Shift+V or ⌘+Option+Shift+V | Ctrl+Shift+V |
| Select all | Ctrl+A | ⌘+A | Ctrl+A |
| Undo | Ctrl+Z | ⌘+Z | Ctrl+Z |
| Redo | Ctrl+Y or Ctrl+Shift+Z | ⌘+Shift+Z | Ctrl+Y |
On phones, copy/paste is gesture-based:
Regular paste preserves formatting (fonts, colors, bold). Plain-text paste strips all formatting and pastes just the characters. Use it when:
Memorize Ctrl+Shift+V (Windows) or ⌘+Shift+V (macOS) — it saves hours per year.
Both Windows and macOS now have clipboard history:
For developers wanting to put text on the clipboard programmatically:
navigator.clipboard.writeText(text)
.then(() => console.log("Copied!"))
.catch(err => console.error("Failed:", err));
This is exactly how our text repeater's Copy button works.
Some terminal applications use Ctrl+C as the "interrupt" signal. To copy in a terminal: use Ctrl+Shift+C (Linux/Windows Terminal) or Ctrl+Insert.
Use a sync service: iCloud Universal Clipboard (Apple devices), or Microsoft Phone Link / KDE Connect (Android to Windows/Linux). Manual fallback: send the text to yourself as a message.
Not natively on most OSes. Clipboard history (Win+V on Windows 11) lets you cycle through past copies. Mac users need a third-party tool.
Different names for the same tool, or different functions? Comparing text repeaters and te...
Use Excel's REPT function to repeat any text or character N times. Examples, common pitfal...
Use the REPT function in Google Sheets to duplicate text. Includes ARRAYFORMULA combinatio...