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...
Copy, cut, and paste are the same three keys on most systems: Ctrl+C, Ctrl+X, Ctrl+V on Windows and Linux; Cmd+C, Cmd+X, Cmd+V on macOS. Select all is Ctrl+A (Cmd+A), and undo is Ctrl+Z (Cmd+Z). These work in nearly every text field, including the box on this site.
To paste plain text and strip fonts, colors, and links, use Ctrl+Shift+V (Cmd+Shift+V on Mac) in most apps. This is useful when moving repeated text between a document and a chat, so the result matches the destination's style instead of carrying over the source's.
When copying a large block from the repeater, the one-tap Copy button is faster and more reliable than manual selection. On mobile, long-press to bring up the paste menu. For very large outputs, use Download instead of the clipboard — some operating systems limit clipboard size.