Mastering CutCopyPaste: 10 Hidden Shortcuts You Need
Below are 10 lesser-known keyboard and interface shortcuts, plus brief usage tips, that speed up cutting, copying, and pasting across common platforms (Windows, macOS, and web apps). Assumed defaults: standard desktop OS and modern browsers/editor apps.
1. Swap clipboard with previous item (Windows Clipboard history)
- Windows: Win + V opens clipboard history; press number or arrow + Enter to paste a past entry.
- Tip: Enable clipboard history in Settings → System → Clipboard.
2. Multi-item paste (macOS Pasteboard managers)
- macOS: Use a third-party paste manager (e.g., Paste, Alfred) to store and paste multiple items.
- Tip: Assign hotkeys to quickly cycle recent clippings.
3. Smart paste (preserve formatting vs plain text)
- Windows/macOS: Ctrl/Cmd + Shift + V often pastes plain text in many apps; Ctrl/Cmd + V preserves formatting.
- Tip: Use Ctrl/Cmd + Shift + V in web editors or terminal to avoid unwanted styles.
4. Cut to line (code editors)
- VS Code: Ctrl/Cmd + X on an empty selection cuts the whole line.
- Tip: Use for moving lines without selecting.
5. Duplicate line (quick copy)
- VS Code / many editors: Shift + Alt + Down (Windows) or Shift + Option + Down (macOS) duplicates the current line.
- Tip: Faster than copy-paste for repeated lines.
6. Paste and match style (macOS apps)
- macOS: Cmd + Option + Shift + V in many native apps pastes matching the destination style.
- Tip: Use in Pages, Notes to keep consistent formatting.
7. Clipboard ring / cycle (some IDEs)
- JetBrains IDEs: Ctrl + Shift + V opens clipboard history; select and paste.
- Tip: Use for pasting older snippets without reopening files.
8. Middle-click paste (Linux/X11)
- Linux: Highlight text with mouse to copy; middle-click to paste.
- Tip: Useful for quick inline pasting without keyboard commands.
9. Paste without overwriting clipboard (macOS Terminal)
- macOS Terminal: Cmd + V pastes; use pbcopy/pbpaste in scripts to manage clipboard without losing contents.
- Tip: Use
pbcopy < file.txtto set clipboard from a file.
10. Keyboard macros for complex paste sequences
- Tools: AutoHotkey (Windows), Keyboard Maestro (macOS) let you script multi-step paste actions.
- Tip: Create macros for inserting templates, timestamps, or formatted blocks.
Quick workflow recommendations
- Enable clipboard history (Win+V / macOS manager) to access recent items.
- Prefer plain-text paste (Shift modifier) when moving between apps to avoid messy formatting.
- Use editor-specific shortcuts (duplicate line, cut line) to minimize selections.
- Consider a paste manager for cross-device syncing and searching clippings.
Leave a Reply