Skip to content

How to see your clipboard history on a Mac

For most of its life the Mac clipboard held exactly one thing: the last item you copied. Copy something new and the old one was gone. macOS 26 Tahoe added a short history inside Spotlight, and there are a few older ways to see what is on the clipboard right now. Here is each one, what it shows, and where it stops.

Updated

What your Mac remembers by default

The clipboard (Apple calls it the pasteboard) is a single slot. ⌘C puts something in it, ⌘V reads it back, and the next ⌘C replaces it. The old item is not written anywhere, which is why a copy you overwrote an hour ago cannot be recovered by any tool, including a clipboard manager you install afterwards.

Clipboard history in Spotlight (macOS Tahoe and later)

  1. Press ⌘Space to open Spotlight.
  2. Press ⌘4 to switch Spotlight to your clipboard.
  3. The first time, macOS asks whether to allow clipboard results. Say yes. It only records from that moment on.
  4. Pick an item from the list to use it again.

Items are removed after a window you choose: 30 minutes, 8 hours or 7 days (the choice arrived in macOS 26.1). That makes it a rolling buffer for the thing you copied a little while ago, not an archive.

See the current clipboard in Finder

  1. Click the desktop or any Finder window so Finder is the active app.
  2. Open the Edit menu and choose Show Clipboard.

A small window shows what is on the clipboard now and what kind of data it is. It is one item, not a history, but it is the quickest way to check what a ⌘V is about to paste.

Read the clipboard from Terminal

Two built-in commands read and write the clipboard as plain text:

pbpaste               # print what is on the clipboard
pbpaste > note.txt    # save it to a file
echo hello | pbcopy   # put text on the clipboard

Handy in scripts, but it is still only the one current item.

Where the built-in options stop

  • Nothing lasts. Spotlight clears items after at most seven days. Finder and Terminal only ever see the current one.
  • Nowhere to keep things. There is no place for the address, snippet or reply you paste every week.
  • Limited search. The Spotlight list is built for recent text, not for finding a link from last month or the words inside a screenshot.
  • A detour to paste. You go to Spotlight, pick the item, then go back to what you were typing.

Keeping a full history with a clipboard manager

A clipboard manager runs in the background and saves each copy as it happens, so nothing is lost when the next ⌘C lands. Maclip is ours. Press ⌘⇧V and your history opens at the text cursor, in whatever app you are typing in. Type to search, press Return to paste, or ⇧Return to paste as plain text.

  • History kept for as long as you like, from 100 clips to unlimited
  • Search by words, by app (app:Safari), by type (type:code), and by the text inside images
  • Boards and tags for the things you reuse
  • Encrypted and stored only on your Mac

Whichever one you pick, check how it handles passwords first. Is a clipboard manager safe? covers what to look for.

Questions

Does a Mac have a clipboard history?

Since macOS 26 Tahoe, yes. Spotlight keeps a short history that you open with ⌘Space and then ⌘4, and it clears items after 30 minutes, 8 hours or 7 days. Earlier versions of macOS keep only the most recent copy.

Can I recover something I copied before it was overwritten?

No. Once a new copy replaces it, the old item is not stored anywhere on the Mac. A clipboard manager only helps from the moment it is running.

How do I clear the clipboard on a Mac?

Copy something harmless, like a single space, to replace it, or run pbcopy < /dev/null in Terminal. Maclip's saved history can be cleared from its Settings or with the Clear Maclip History action in Shortcuts.

Where is the clipboard stored on a Mac?

In memory, managed by the system. It is not a file you can open, and it does not survive a restart.

Keep reading