By default, no — macOS keeps only the last item you copied

Updated · 18 min read
Here is the short version: out of the box, a Mac does not save your clipboard history. It keeps exactly one item, the most recent thing you copied, and the moment you copy something else the previous item is gone for good. That single-slot behaviour held for the entire lifetime of the Mac until late 2025, when macOS 26 Tahoe added an optional, time-limited history to Spotlight. It is a genuine improvement, but it is off by default, it expires, and it cannot pin anything. If you want a complete history that never disappears, you still need a dedicated clipboard manager.
That is the headline. The rest of this article is the detail that actually matters: how the macOS clipboard works under the hood, what Tahoe changed and where its limits bite, where your copied data physically lives, what it means for privacy, and how to go from a one-item clipboard to an unlimited, searchable archive in under a minute.
The short answer, in one screen
- By default: no history. macOS retains a single clipboard item, overwritten on every copy.
- macOS 26 Tahoe and later: an optional clipboard history in Spotlight, off by default, with a maximum retention of 7 days.
- Retention choices (Tahoe 26.1+): 30 minutes, 8 hours, or 7 days. There is no longer setting and no “keep forever”.
- No pinning, no per-app filtering, no one-keystroke access in the built-in feature.
- Older macOS (pre-Tahoe): no clipboard history of any kind, ever.
- For unlimited, permanent, searchable history: use a clipboard manager such as Maccy.
How the Mac clipboard actually works
To understand why the Mac forgets, it helps to know what the clipboard really is. On macOS the clipboard is a system service called the pasteboard. Applications never own it directly; they talk to it through the pasteboard server, a background daemon that holds the data in memory and hands it out on request. In AppKit this surface is the NSPasteboard class, and the one you use thousands of times a day is the general pasteboard, the destination for every Command-C and the source for every Command-V.
One slot, overwritten on every copy
The general pasteboard stores one logical clipping at a time. When an app writes to it, the system increments an internal change count and replaces whatever was there before. There is no stack, no ring buffer, no undo. Copy a paragraph, then copy a URL, and the paragraph is not pushed down a list; it is discarded. This is the core reason the Mac “loses” your earlier copies: the design never kept them in the first place. The pasteboard is a hand-off point, not a ledger.
That model is fast and predictable, and it is exactly what most copy-and-paste actions need. It is also why so many people have, at some point, copied an important block of text, copied one more thing by reflex, and watched the first disappear. The behaviour is working as designed. The design simply does not include memory.
One copy, several representations
A single clipping is richer than it looks. When you copy from a web page, the source application typically writes the same content to the pasteboard in multiple flavours at once, each tagged with a Uniform Type Identifier (UTI). A copied passage might arrive as public.html, public.rtf, and public.utf8-plain-text simultaneously. The destination app then chooses the richest representation it understands. Paste into a rich editor and you get the styled version; paste into a terminal and you get plain text.
This is the mechanism behind “Paste and Match Style” (Command-Option-Shift-V in many apps): it instructs the destination to take the plain-text representation and ignore the styled ones. Images travel as public.tiff or public.png, and files are referenced as public.file-url rather than copied byte-for-byte. Knowing this matters later, because it explains what a clipboard history can and cannot faithfully restore.
Inspecting the current clipboard
You can see the single current item without any third-party tool. In the Finder, open the Edit menu and choose Show Clipboard. A small window displays whatever is on the general pasteboard right now. From the command line, pbpaste prints the clipboard’s text contents and pbcopy writes to it; piping echo -n "" | pbcopy is a quick way to wipe the current item. None of these show history, because, by default, there is no history to show.
Why the Mac never kept a history (until recently)
The absence of clipboard history was a deliberate trade-off, not an oversight. Three reasons stand out. First, simplicity and performance: a single in-memory slot is trivially fast and costs almost nothing. Second, predictability: with one item, Command-V always pastes the last thing you copied, with no ambiguity about which of a dozen recent clips you will get. Third, and most important, privacy. The clipboard is where passwords, two-factor codes, license keys, and private messages routinely pass through. Persisting all of that to disk by default would have been a security liability the moment any other app, or any other person at your desk, could read it back.
Power users filled the gap with clipboard managers for decades, and Apple watched that ecosystem mature. Tahoe’s history feature is essentially Apple conceding the point, but doing so cautiously: it is opt-in, time-boxed, and easy to clear, precisely because the company is treating retained clipboard data as sensitive. That caution is the right instinct, and it shapes every limitation discussed below.
A short history of clipboard managers on the Mac
If the Mac never shipped with a history, how did people cope? They reached for third-party utilities, and an entire genre grew up to solve a problem Apple declined to. The lineage runs back to small open-source clip stacks like Jumpcut, which spawned the developer-favourite Flycut, through menu-bar staples such as CopyClip and Clipy, to polished commercial apps like Pastebot and Paste. Launchers got in on it too: Alfred bundles clipboard history into its paid Powerpack, and Raycast added a capable clipboard view to its free tier.
The common thread is that every one of them exists because the system clipboard is amnesiac. Each adds memory, search, and organisation on top of the same underlying pasteboard. Tahoe’s Spotlight feature now occupies the entry-level end of that spectrum, which is genuinely useful for casual users, but the more capable managers still do considerably more, especially around permanence, pinning, and privacy controls. The category did not become obsolete the day Apple shipped a seven-day buffer; it simply gained a floor.
What the Mac actually counts as a copy
Not every “I selected something” gesture touches the clipboard, and the distinction trips people up. A copy (Command-C) or cut (Command-X) writes to the general pasteboard and increments the system change count. A drag and drop, by contrast, uses a separate dragging pasteboard and never lands in your normal clipboard, which is why dragging an image into a document does not appear in clipboard history. Selecting text without copying does nothing to the pasteboard at all. And some apps quietly read the clipboard when they launch or return to the foreground, the behaviour Apple began surfacing with paste notifications on iOS, and which underlies a good deal of clipboard privacy concern in the first place.
The practical takeaway: any history tool, built in or third-party, records what is written to the general pasteboard by copy and cut. If something never reached the pasteboard, no history feature will have it, however recently you saw it on screen.
macOS Tahoe changed the answer: clipboard history in Spotlight
macOS 26 Tahoe folded a basic clipboard history into Spotlight, the system-wide search bar. For the first time, a stock Mac can recall more than the last thing you copied without any extra software. It covers the common case well, and for a lot of people it is enough. The catch is in the details, so here is precisely how it behaves.
Turning it on
Clipboard history is disabled until you enable it. Open System Settings → Spotlight, scroll to the bottom of the right-hand pane, and switch on Results from Clipboard. Directly beneath the toggle is a retention dropdown that controls how long copied items remain searchable. If you never flip that switch, your Mac behaves exactly as it always has: one item, no history.
Opening and using it
To reach the history, invoke Spotlight with ⌘Space, then press ⌘4 to jump to the Clipboard section. You will see a list of recent clippings. Double-click an entry to paste it at the cursor, or use the arrow keys to select one and press Return. There is also a button beside each item that sets it back as the current clipboard, so a subsequent plain Command-V pastes that clip. Spotlight recognises different content types as it goes: it labels URLs, previews images, and even badges a screenshot with the icon of whichever app was frontmost when you captured it.
That two-step invocation, ⌘Space then ⌘4, is the feature’s most-criticised quirk. It works, but it is slower than a single dedicated shortcut, and it is the first thing people notice when they compare it with purpose-built tools.
How long it keeps things
Retention is the headline limit. At Tahoe’s launch, items expired after 8 hours. macOS 26.1 turned that into a three-way choice: 30 minutes, 8 hours, or 7 days. Seven days is the ceiling. There is no thirty-day option, no unlimited option, and no way to mark something as permanent. The shorter windows exist for privacy; the seven-day window exists for convenience. Either way, anything you copied eight days ago is gone, whether you needed it or not.
Clearing it
macOS 26.1 also introduced a Clear Clipboard History button in the same Spotlight settings panel. One click wipes everything Spotlight has retained, independent of the expiry timer, and without touching the rest of your Spotlight search history. To disable the feature entirely, switch Results from Clipboard back off; the Clipboard section then disappears from Spotlight altogether.
What it can and cannot do
The built-in history handles text, images, files, and URLs, and that covers everyday recall. What it deliberately leaves out is the entire “manager” layer that power users rely on:
- No pinning. You cannot mark a clip to survive beyond the expiry window. Your most-reused snippets vanish on the same timer as throwaway clips.
- A hard time cap. Seven days is the maximum. There is no concept of a permanent archive.
- No per-app exclusion. You cannot tell it to ignore your password manager or a specific app; the only control is on or off, plus the retention timer.
- No one-step access. The
⌘Space → ⌘4sequence is the only route in. - No filtering or organisation. There are no categories, no saved snippets, no folders, and no rules for transforming text as you paste.
So the accurate answer to “does Mac save clipboard history” in 2026 is: optionally, for up to seven days, if you turn it on, with no way to keep anything permanently. Good for short-term recall. Not a long-term memory.
Choosing a retention window that fits how you work
If you do enable the built-in history, the retention dropdown is the one setting worth thinking about, because it trades convenience against exposure directly. 30 minutes suits anyone privacy-conscious or on a shared machine: you get short-term recall for the task in front of you, and nothing lingers. 8 hours, the original default, comfortably covers a single working day without carrying clips overnight. 7 days is for people who genuinely refer back to last week’s copies and accept that more sensitive material sits around longer. There is no universally correct choice; pick the shortest window that still saves you from re-copying things, and lean shorter if you ever paste credentials manually.
Spotlight clipboard history not showing? Common fixes
A frequent complaint after upgrading is that pressing ⌘4 shows nothing, or that the dropdown is visible but the list stays empty. Work through these in order:
- Confirm the feature is on. System Settings → Spotlight → Results from Clipboard must be enabled. The toggle and its retention dropdown sit at the very bottom of the pane, below the apps and system results.
- Check your macOS version. Clipboard history requires macOS 26 Tahoe. The three-way retention choice arrived in 26.1, so update if you only see a single timer or none at all.
- Copy something after enabling. The history starts from the moment you switch it on. Items you copied before enabling will not appear retroactively.
- Use the correct sequence. Open Spotlight with
⌘Space, then press⌘4;⌘4on its own does nothing. - Restart if indexing is stuck. Spotlight relies on its indexing services, and a reboot clears the occasional case where the Clipboard section reports “No results found” despite recent copies.
If it still misbehaves, a dedicated manager sidesteps Spotlight’s indexing entirely, since it captures copies directly and stores them in its own database.
Where the clipboard data physically lives
People often want to “find the clipboard file” and inspect or back it up. There isn’t one, at least not in any form you are meant to open. The current clipboard item lives in memory, held by the pasteboard server; it is not a document on disk you can browse. Tahoe’s optional history is managed internally by Spotlight’s indexing machinery, and it too is system-owned rather than a tidy file in your home folder. Treat both as opaque, system-managed stores. The supported ways to interact with them are the ones already covered: Show Clipboard for the current item, Spotlight’s Clipboard section for the recent history, and the Settings panel for clearing.
This matters for two practical reasons. You cannot reliably back up or migrate the built-in history, and you cannot trust that a clip is “saved” anywhere durable. If a clipping is important enough to keep, it needs to be in something designed to keep it, which brings us to clipboard managers. But first, two features people frequently confuse with history.
Does the clipboard survive sleep, restart, or logout?
Sleep is harmless: the current item is still there when you wake the Mac, because nothing flushed memory. A log-out, restart, or shutdown is different. The general pasteboard lives in memory tied to your session, so the current clipboard item does not reliably survive a restart; copy something, reboot, and you should expect the slot to be empty. Tahoe’s Spotlight history behaves better here, since it is persisted by the system and remains available across restarts until items hit their retention limit. A third-party manager is the most resilient of the three, because it writes to its own on-disk database, so your archive is intact after a reboot and, depending on the app, can even be backed up or moved to a new Mac.
If you have ever lost an important clip to an unexpected restart, that is the single-item, in-memory model showing its edges, and it is one more reason to keep anything valuable somewhere persistent rather than trusting the live clipboard.
Universal Clipboard is not clipboard history
Universal Clipboard, part of Apple’s Continuity suite, lets you copy on one Apple device and paste on another, say copy on an iPhone and paste on a nearby Mac. It feels magical, and it gets mistaken for history, but it is neither. It shares only the current clipboard item, and only for a brief window of roughly a couple of minutes after you copy. It keeps no log. Once you copy something else, the shared item is replaced just like the local clipboard.
It also has requirements: both devices must be signed into the same Apple Account, have Bluetooth and Wi-Fi switched on, sit within Bluetooth range, and have Handoff enabled in settings. Useful, yes. A history, no. If you have ever assumed Universal Clipboard would let you scroll back through earlier cross-device copies, it will not; it only ever holds the latest one.
What about clipboard history on iPhone and iPad?
The same question applies to iOS and iPadOS, and the answer is stricter still. Neither keeps a clipboard history; they store a single current item, exactly as the Mac historically did, and there is no iOS equivalent of Tahoe’s Spotlight history. iOS also clamps down hard on background clipboard access for privacy, which is why apps now show a banner when they read what you copied. That same sandboxing limits what third-party clipboard managers can do on iPhone: they cannot silently watch the clipboard the way a Mac utility can, so most rely on a custom keyboard or a share-sheet action to capture and recall clips. If cross-device clipboard matters to you, Universal Clipboard handles the current item between nearby Apple devices, but for a true searchable archive you are still looking at a Mac-side manager.
Is a saved clipboard a privacy risk?
Any time copied data persists, you trade convenience for exposure, and the clipboard sees more secrets than almost any other system surface. Apple is candid about this: when you enable Spotlight’s history, the settings note warns that personal and sensitive information may appear in search results. That is not scaremongering. People copy passwords, verification codes, recovery phrases, card numbers, and private addresses constantly. A seven-day window means any of those could be one ⌘4 away for a week.
How password managers stay out of history
There is a well-established convention on macOS for marking a clip as secret. When a password manager copies a credential, it adds a “concealed” type, org.nspasteboard.ConcealedType, to the pasteboard item, and related flags like org.nspasteboard.TransientType exist for short-lived clips. Tools that respect this convention skip those entries entirely. 1Password, Bitwarden, and Apple’s own Passwords app set these flags, which is why a well-behaved clipboard utility never stores your logins. The built-in Spotlight history is less granular, however: its only privacy controls are the retention timer, the clear button, and the master toggle. There is no per-app exclusion.
It is also worth knowing what the clipboard does not see. macOS uses a mechanism called secure input in password fields, which prevents other processes from observing keystrokes as you type. That protects what you type, but it does nothing once a value reaches the clipboard. The moment you copy a password, whether from a manager or by hand, it becomes ordinary clipboard data unless it is marked concealed. That is the precise gap the concealed-type convention closes, and the reason letting your password manager fill credentials directly is safer than copying them yourself.
Sensible settings
If you enable the built-in history and care about exposure, the 30-minute retention option gives you short-term recall while limiting how long anything lingers. Get into the habit of using the Clear Clipboard History button after copying anything sensitive, and remember that copying a password directly, rather than letting your password manager fill it, defeats the manager’s concealment. On a shared or supervised Mac, consider leaving the feature off. The most private setting is the one macOS ships with: a single item that disappears the instant you copy the next thing.
How to view and clear what your Mac has stored
Pulling the previous sections together, here is the complete toolkit for seeing and removing clipboard data on a stock Mac.
- See the current item: Finder → Edit → Show Clipboard, or run
pbpastein Terminal. - See recent items (Tahoe):
⌘Spacethen⌘4, with Results from Clipboard enabled. - Clear the current item: copy something harmless, or run
echo -n "" | pbcopyto empty the general pasteboard. - Clear the recent history (Tahoe): System Settings → Spotlight → Clear Clipboard History.
- Turn history off entirely: System Settings → Spotlight → switch off Results from Clipboard.
Most password managers also clear copied credentials automatically after a configurable timeout, which is worth checking in your manager’s settings if you copy logins often.
How clipboard managers capture every copy
It is reasonable to wonder how a manager records everything when the system only keeps one item. The answer is the pasteboard’s change count. Every write to the general pasteboard increments an integer that any app can read. A clipboard manager watches that number on a short interval; when it ticks up, the manager knows a new copy has happened, reads the fresh contents along with their type information, and appends them to its own store before the system overwrites the slot on your next copy. In effect, it sits beside the clipboard and takes a snapshot each time the value changes.
Two consequences follow. First, this is why a manager needs to be running to capture history; anything copied while it is quit is not recorded, because nothing was there to snapshot it. Second, it is why a well-built manager checks the concealed and transient flags on each item before saving, so secrets are filtered at capture time rather than scrubbed afterwards. The mechanism is simple, lightweight, and entirely local; no copy ever has to leave your Mac for the history to work.
When the built-in history isn’t enough: clipboard managers
The built-in history answers “what did I copy in the last few hours?” A clipboard manager answers “what did I ever copy, and can I find it instantly and keep the important parts forever?” That difference is the entire reason the category exists, and Tahoe’s feature, capable as it is, does not erase it.
A proper clipboard manager runs quietly in the menu bar and adds the layer Apple left out:
- Unlimited, non-expiring history instead of a seven-day cap.
- Fast fuzzy search across everything you have ever copied.
- Pinning so frequently used snippets, boilerplate, and addresses stay at the top and never get purged.
- Per-app exclusion so sensitive apps are ignored at the source.
- A single, dedicated shortcut rather than a two-key Spotlight detour.
- Rich type handling for text, links, images, and files, with thumbnails.
Everyday situations where a real history pays off
The value of unlimited history becomes obvious the moment a seven-day cap gets in your way. A few patterns come up constantly. Researchers and writers copy quotes, links, and citations across an afternoon and want to assemble them later without hunting through forty tabs. Developers shuttle commands, tokens, file paths, and code fragments between a terminal, an editor, and a browser, and pasting the wrong one wastes real time. Support and operations staff reuse the same canned responses, ticket templates, and account details dozens of times a day, which is precisely what pinning is for. Designers collect colour values and asset URLs. Anyone filling forms re-enters the same addresses and reference numbers endlessly.
In every one of these, the built-in history helps only if you reach for the item within its window and never need it again. A permanent, searchable archive with pinning turns the clipboard from a one-shot buffer into a small personal database of the things you actually reuse. That is the gap a manager fills, and the reason the feature graduated from “nice to have” to “installed on day one” for a lot of professionals.
Maccy: full, unlimited clipboard history on the Mac
If you want everything the built-in history lacks, Maccy is the cleanest way to get it. It is a free, open-source clipboard manager built around one idea: keep everything you copy and give it back the instant you ask. It does not try to be a launcher, an automation suite, or an AI assistant. It records your clipboard and lets you paste any past entry through a fast, keyboard-driven search window, and that focus is exactly why it feels quicker than the alternatives.
What it actually gives you
- Unlimited history with no time limit. Nothing expires on a hidden clock; your archive is as deep as you want it.
- Fuzzy search. Press
⌘⇧C, start typing, and the list narrows in real time. Return to paste; a modifier pastes as plain text. - Pinning. Mark the snippets you reuse daily and they stay put, permanently, at the top of the list.
- Text and images with thumbnails, plus file references and rich content.
- Local-first storage. Everything sits in a database on your Mac. No cloud requirement, no account, no telemetry. You can read about Maccy’s privacy model in detail.
- Password-manager safety. It honours the concealed-clipboard convention, so credentials from 1Password, Bitwarden, and Apple Passwords stay out of your history automatically, and you can blocklist additional apps.
It is open source under the MIT licence, native, and small, so it launches instantly and stays out of the way. For the full list of capabilities, see Maccy’s feature set; when you are ready, you can download Maccy and have unlimited history running in seconds.
Running it alongside Tahoe’s built-in history
You do not have to choose. Maccy and Spotlight’s clipboard history coexist without conflict, and plenty of people run both: Spotlight for the occasional quick recall it is already wired into, Maccy for the deep, permanent, searchable archive with pinning. If you would rather keep a single source of truth, simply leave Results from Clipboard switched off and let Maccy handle everything. A side-by-side comparison with the built-in tool makes the division of labour obvious.
Built-in Spotlight history vs Maccy
| Capability | Spotlight (macOS Tahoe) | Maccy |
|---|---|---|
| Cost | Free (built in) | Free, open source (MIT) |
| History length | Up to 7 days | Unlimited, no expiry |
| On by default | No, opt-in | Runs once installed |
| Pinning / permanent items | No | Yes |
| Search | Basic, via Spotlight | Fast fuzzy search |
| Access | ⌘Space then ⌘4 (two steps) | Single shortcut (⌘⇧C) |
| Per-app exclusion | No | Yes |
| Password-manager safety | Limited (timer / clear only) | Automatic, plus blocklist |
| Content types | Text, images, files, URLs | Text, images, files, rich content |
| Storage | System-managed, opaque | Local database on your Mac |
Set up full clipboard history in under a minute
- Install Maccy. Grab it from the download page, or use Homebrew:
brew install --cask maccy. - Grant Accessibility access. macOS asks for this so Maccy can paste into other apps. Approve it in System Settings → Privacy & Security → Accessibility.
- Set your shortcut. The default summon key is
⌘⇧C. Rebind it if you like, and pick something clear of your other apps. - Pin and exclude. Pin the snippets you reuse, and add any sensitive apps to the ignore list.
- Optional: turn off Spotlight’s Results from Clipboard if you want a single archive rather than two.
That is the whole setup. From the next copy onward, every clipping is captured, searchable, and yours to keep.
The bottom line
Does a Mac save clipboard history? By default, still no, it keeps one item and forgets the rest. macOS 26 Tahoe softened that with an opt-in Spotlight history, but it expires within seven days, cannot pin anything, and offers no real organisation. For short-term recall on a recent Mac, enable it and set a retention window you are comfortable with. For a complete, permanent, searchable record, with pinning, instant search, and automatic password safety, install a dedicated manager. Maccy does exactly that, for free, and you can run it on its own or right beside the built-in feature.
Put simply: the built-in tools answer what you copied recently, and a manager answers what you have ever copied and want to keep. If you only ever need the last few hours, Tahoe’s history is a welcome, no-cost convenience. If your clipboard is part of how you actually work, treat the seven-day cap as the prompt to set up something permanent, decide once whether you want one archive or two, and stop losing clips you will need again.
Frequently asked questions
Does a Mac save clipboard history by default?
No. By default macOS holds a single clipboard item, which is overwritten every time you copy. macOS 26 Tahoe added an optional history in Spotlight, but it is switched off until you enable it.
How long does a Mac keep clipboard history?
The built-in Spotlight history retains items for 30 minutes, 8 hours, or 7 days, depending on the option you choose in System Settings → Spotlight. Seven days is the maximum. For anything longer, a clipboard manager such as Maccy keeps history indefinitely.
How do I turn on clipboard history on a Mac?
On macOS Tahoe, open System Settings → Spotlight, scroll to the bottom, and enable Results from Clipboard, then choose a retention period. To use it, press ⌘Space followed by ⌘4. To keep an unlimited history instead, install Maccy.
Can I keep clipboard history forever on a Mac?
Not with the built-in feature, which caps out at seven days and has no pinning. A clipboard manager like Maccy keeps unlimited history with no expiry and lets you pin items so they are never purged.
Did older versions of macOS save clipboard history?
No. Before macOS 26 Tahoe there was no built-in clipboard history at all. Every version kept only the single current item, which is why clipboard managers have been popular on the Mac for so long.
Where is the clipboard history stored on a Mac?
The current item lives in memory, managed by the pasteboard server, and the optional Tahoe history is handled internally by Spotlight. Neither is a file you browse directly. A third-party manager such as Maccy, by contrast, stores its history in a local database on your Mac.
How do I see what is on my clipboard right now?
In the Finder, choose Edit → Show Clipboard to view the current item, or run pbpaste in Terminal. To see recent items on Tahoe, press ⌘Space then ⌘4 with clipboard results enabled.
Is saving clipboard history a security risk?
It can be, because passwords and other sensitive data often pass through the clipboard. Apple warns that retained items may surface in Spotlight search. Use a short retention window, clear the history after copying anything sensitive, and rely on a tool that respects the concealed-clipboard convention so password-manager entries are skipped, as Maccy does.
Does Universal Clipboard save history across devices?
No. Universal Clipboard shares only the current item between nearby Apple devices for a short window and keeps no log. It is a convenience feature for cross-device copy and paste, not a history.
Can I use the built-in history and a clipboard manager together?
Yes. Spotlight’s clipboard history and a manager like Maccy run side by side without conflict. Many people keep both, or simply disable the built-in feature and let Maccy handle everything.
