Guides··Updated ·14 min read

Clipboard History on Mac (2026): How to See It and Keep It

macOS keeps exactly one clipboard item, and Finder > Edit > Show Clipboard is the only built-in way to see it; on macOS 26 (Tahoe), Spotlight adds an opt-in history of roughly the last eight hours (Command-Space, then Command-4). Anything longer, searchable or pinned needs a clipboard manager: Maccy is free, Raycast’s free tier keeps three months, and NotchBay’s tray keeps your last 60 clips in the notch.

By Deepak Yadav, building NotchBay

Three answers up front

  • Every macOS version keeps one clipboard item. Finder’s Edit menu has Show Clipboard, a read-only window of that one item, and pbpaste in Terminal prints the same thing.
  • macOS 26 (Tahoe) adds a clipboard history to Spotlight: switch it on once, then press Command-Space and Command-4. It covers roughly eight hours, skips concealed passwords, and has no pinning.
  • For a longer or searchable history you install a clipboard manager. Maccy is free and open source; Raycast’s free tier keeps three months; NotchBay, this site’s own app, keeps a tray of your last 60 clips in the MacBook notch.

#Does macOS keep a clipboard history?

By default, macOS keeps only the single most recent item you copied; every new copy overwrites it, and until macOS 26 there was no history anywhere in the system. That is still how the underlying pasteboard works. Tahoe layers a short history on top of it inside Spotlight rather than changing the one-slot design.

When an app says "copied to clipboard" it hands the data to a system service called the general pasteboard, one block of memory shared by every running app. A single copy usually writes several typed representations at once (plain text, rich text, sometimes an image or a private app type), the system bumps a change counter, and when you paste, the receiving app reads the richest type it understands. Two properties of that design explain everything on this page: a new copy replaces the old one, and the pasteboard lives in memory, so a restart empties it. Phone keyboards surface recent clips, which is why the Mac feels like it forgot something; it never remembered in the first place. That was the entire Mac clipboard history story until Tahoe: one slot, no list.

The general pasteboard holds one item at a time. Copying replaces it, restarting empties it, and no setting in System Settings changes that.

#How to open the clipboard on a Mac (Show Clipboard)

There is exactly one clipboard viewer built into macOS, and most people never find it, because the Edit menu belongs to whichever app is frontmost and Show Clipboard exists only in Finder’s copy of it. So the step people skip is the first one.

  1. Click the desktop, or click any Finder window, so Finder is the active app. Check the app name next to the Apple logo in the menu bar.
  2. Open the Edit menu.
  3. Choose Show Clipboard, near the bottom.

A window titled Clipboard opens with whatever you last copied. Plain text arrives as plain text. Rich text keeps its formatting, which is the fastest way to confirm that a paste is carrying styles you do not want. Copy an image and you see the image. Copy files in Finder and you see the file names, because a file copy puts references on the clipboard rather than the bytes. The window is live: leave it open in a corner, copy something in another app, and it redraws, which makes it a decent way to answer "did that copy actually work?"

The limits are worth stating flatly. It is read-only: you cannot edit it, copy back out of it, or scroll to the previous item, because there is no previous item. The command disappears from the Edit menu the moment another app is frontmost. There is no Clipboard app in Launchpad and no clipboard folder in your home directory; if you were hunting for one, where the clipboard is on a MacBook settles that question, and how to copy on a Mac covers the copying side when a copy silently fails.

#How to see clipboard history on macOS 26 (Spotlight)

macOS 26 (Tahoe) is the first release where Apple keeps a record of what you copied. It lives inside the rebuilt Spotlight, alongside the app launcher and the actions list, and it is the closest thing the Mac has to the history panel Windows users ask about.

  1. Turn it on once. Open System Settings, go to the Spotlight section, and enable clipboard history. Spotlight also offers to switch it on the first time you open the clipboard view.
  2. Press Command-Space to open Spotlight.
  3. Press Command-4 to jump to the clipboard view, the last of Spotlight’s views, or click the small clipboard icon in the Spotlight window.
  4. Arrow down the list or type a few characters to filter it, then press Return. The clip pastes into the frontmost app and Spotlight closes.

It keeps text, links and images, and each entry shows which app it came from. Two limits define it. Retention is short: Apple’s materials and most reviews describe a window of roughly eight hours, there is no setting to extend it, and there is no pinning or export, so anything older is simply gone. And it deliberately skips some things: password managers mark what they put on the clipboard as concealed, and anything marked that way stays out of the history, which is the correct behavior. The full teardown, including what it quietly drops, is in macOS Tahoe clipboard history.

If you do not see a clipboard view at all, check that you are actually on macOS 26 (Apple menu, About This Mac) and look through Spotlight’s settings, since Apple has moved these controls between point releases. On macOS 15 and earlier there is nothing to enable; the feature does not exist, and only a clipboard manager brings a history to those versions.

Tahoe’s history is a window, not an archive: roughly eight hours, no pinning, and nothing lets you extend it.

#The Terminal route: pbpaste and pbcopy

If you already have a terminal open, this is the fastest way to look at the clipboard, and the only method that shows what the clipboard really contains rather than a rendered version of it. Both commands have shipped with macOS since the earliest OS X releases.

# print the clipboard as text
pbpaste

# force plain text, dropping any rich formatting
pbpaste -Prefer txt

# put something on the clipboard
echo "hello" | pbcopy

# empty the clipboard
pbcopy < /dev/null

# save whatever is on the clipboard to a file
pbpaste > ~/Desktop/clip.txt

# peek at the Find pasteboard, a separate one
pbpaste -pboard find

# list every data type the clipboard is currently carrying
osascript -e 'clipboard info'

The last two are the details people never know. macOS keeps several named pasteboards, not one: the general pasteboard is what Command-C uses, the find pasteboard is what Command-E fills so a search term can travel between apps, and there are font, ruler and drag pasteboards too. When someone says the Mac clipboard holds one item, they mean the general pasteboard. And clipboard info lists the type and size of every representation on it, which is why pasting the same copy into Notes and into a code editor gives different results: each app takes the richest type it understands.

#The copy, cut and paste shortcuts

The clipboard has no shortcut to open it, because there is nothing to open. The shortcuts act on it instead, and two of them are the ones people wish they had known sooner.

ShortcutWhat it does
⌘ CCopy the selection to the clipboard
⌘ XCut: copy, then remove from the source (text only; not files in Finder)
⌘ VPaste the clipboard at the cursor
⌘ ⌥ ⇧ VPaste and Match Style: paste text without its formatting
⌘ ⌥ VIn Finder, move the copied file here instead of duplicating it
⌘ ASelect all, the usual step before copying

⌘ is Command, ⌥ is Option, ⇧ is Shift. A few apps use a different combination for Paste and Match Style; check the app’s Edit menu if the fourth row does nothing.

#Why your copy disappeared

Four causes account for nearly every case of a clipboard that came up empty when it should not have.

  • You restarted or logged out. The pasteboard lives in memory and survives neither. Nothing recovers it.
  • You quit the source app before pasting. Apps may put a promise on the clipboard rather than the data itself, and fill it in only when something asks to paste. Quit the app first and the promise cannot be honored; copying a large image out of a design tool and quitting the tool is the classic version.
  • A password manager cleared it. Most password managers wipe the clipboard on a timer after you copy a credential. That is correct behavior, and it can also take the thing you copied just before.
  • You copied something else and forgot. The unglamorous one, and the reason clipboard history exists as a product category at all.

A fifth place your clipboard exists catches people out: Universal Clipboard, which lets you copy on an iPhone and paste on the Mac through Handoff. It needs both devices signed into the same Apple Account, Bluetooth and Wi-Fi on, Handoff enabled on both, and the devices near each other, and the copied content is offered only for a short window. If a paste from your phone fails with no error, run pbpaste on the Mac: if it prints the phone’s content, the handoff worked and the problem is the app you pasted into.

#What the built-in history does not do

Knowing the limits up front saves you from expecting the wrong thing. Here is where Tahoe’s clipboard history stops, and why people still reach for a dedicated manager now that the system has one.

  • It expires. Anything you copied more than a few hours ago is gone. A clipboard manager keeps items until you delete them, or for a window you set.
  • No pinning. There is no way to mark a snippet you paste ten times a day so it never rolls off. Managers make that a core feature.
  • No type awareness. Text, links and images land in one flat list. Some managers sort by type so you can jump straight to the last image or the last URL.
  • Nothing inside images. Copy a screenshot and the built-in history treats it as an opaque picture. It cannot read the text baked into it.
  • One place to reach it. It lives in Spotlight. If you want history in a menu bar drop-down, a floating panel or the notch, that is a job for other software.

None of this makes the Tahoe feature bad. It makes it a floor, and for casual copying it may be all you need.

#The clipboard managers Reddit keeps recommending

A clipboard manager is a small app that sits in the background and records every copy into a searchable list you open with a shortcut. Read enough r/macapps and r/mac threads and the same five or six names carry almost all the votes; which one wins depends mostly on what you already run.

ToolCostHistoryNotes
Spotlight (built in)Free with macOS 26About 8 hours; text, links, imagesNo pinning, nothing to install
MaccyFree, MIT (paid App Store build is the same app)Text and images, with pinningmacOS 14 or later; opens with Shift-Command-C
RaycastFree tier; Pro $10/month, or $8/month billed yearly3 months of clipboard history on the free tierInside the launcher you already open
AlfredFree app, paid PowerpackConfigurable retention, snippetsA Powerpack feature in the Alfred bar
PasteSubscription, 7-day free trialVisual shelf, pinboards, iCloud syncHistory travels between your Apple devices
Pastebot 3$39 one-time direct (a year of updates), or $2.99/month or $24.99/year on the App Store; 14-day trialFilters, stacks for sequential paste, pastebinsmacOS 26 or later
FlycutFree, open sourcePlain text onlyTiny, a Jumpcut descendant
NotchBay$9 one-time, 14-day money backLast 60 clips plus pins, sorted by type, OCR on screenshotsmacOS 26 and a notched MacBook

Prices and requirements read from each vendor’s own page on 5 Sep 2026 (Maccy, Raycast, Pastebot, NotchBay); Alfred, Paste and Flycut list their model rather than a number. The longer comparison is in the best Mac clipboard manager, and every clipboard app on this site is on the clipboard apps page.

Maccy is the default recommendation in most threads, and it deserves it: open source, free from GitHub or Homebrew, keyboard-first and deliberately small. It needs macOS 14 or later. If all you want is to stop losing copied text, it is the first thing to try; setup and quirks are in the Maccy guide.

Raycast and Alfred win the threads where someone already uses a launcher. You are not adding a tool, you are turning on a feature in one you already reach for fifty times a day; Raycast’s free tier keeps three months of history. If you have neither, installing a whole launcher for clipboard history is a large answer to a small question.

Paste is the designed option: a horizontal shelf of cards, pinboards for grouped snippets, and sync through your private iCloud, sold as a subscription with a 7-day trial. The subscription is what generates the arguments, not the app. The longer look is in the Paste review. Pastebot is the one power users bring up late in a thread, for its filters: rules that clean up or rewrite text on the way out, plus stacks that paste several copied items in sequence. Version 3 needs macOS 26 and costs $39 one-time direct or $2.99 a month on the App Store; the install is on the Pastebot app page.

Five questions narrow the field faster than any feature list: how far back you actually reach (if the answer is "earlier today", macOS 26 already has you covered); whether you need pinning; whether you copy images and screenshots, and if so whether the tool can find text inside them; keyboard or pointer; and what should happen on a second Mac or your iPhone, since sync is a paid feature almost everywhere it exists.

#How a clipboard manager actually works, and the privacy rules

macOS exposes the pasteboard through NSPasteboard, and the general pasteboard has a counter called changeCount that increments every time anything writes to it. A clipboard manager does not hook your Command-C keystroke and does not watch your keyboard: it reads that counter on a timer, notices when the number moved, and copies out whatever is now sitting there. That is the whole trick, in every one of these apps, and it is why a well-built manager should not show up as an energy hog.

The same design means a manager captures everything, including things you did not mean to keep. That is why the pasteboard has an informal opt-out: apps that put sensitive data on the clipboard can mark it with types like org.nspasteboard.ConcealedType or NSPasteboardTypeTransient, the convention password managers use to say "do not record this". Every serious clipboard manager honors it. Three rules for any tool you are considering:

  • Prefer local storage. If a history syncs, it is leaving your Mac. That may be exactly what you want across your own devices, but know it is happening and where it lands.
  • Cap the retention deliberately. Unlimited history sounds generous and is mostly a liability. A bounded list plus pinning gives you the same practical benefit with a much shorter tail.
  • Test the password exclusion yourself. Copy a password out of your password manager, open the history, and confirm it is not there. If the tool can exclude specific apps, add the password manager on day one.

#Clipboard history in the notch

NotchBay is this site’s own app, so read this section as the maker’s pitch. NotchBay puts a clipboard history in the one strip of a MacBook screen that no window ever covers: the camera notch. Copy something and it drops into a tray at the notch, where a glance replaces a hotkey and a search. The tray keeps your last 60 clips and sorts them automatically by type, so text, links, colors, images and files each get their own lane and finding the last URL does not mean scrolling past twenty paragraphs. Screenshots and screen recordings land in it automatically, screenshots are run through on-device OCR so the words inside them are searchable, and clips you pin never expire, which is the piece Tahoe’s time-limited history cannot give you.

NotchBay’s tray holds your last 60 clips plus anything you pin, auto-sorted by type, with OCR on screenshots so the text inside them is searchable.

The limits, stated plainly because every tool here has them. Sixty clips plus pins is a working set, not an unlimited archive; if you need a searchable record going back months, Maccy, Alfred or Pastebot is the better fit. NotchBay requires macOS 26 (Tahoe) and is designed for a MacBook with a notch; on a Mac without one, or on an external display, it runs as a small floating pill at the top edge with the same features, but the notch is the headline experience. It is $9 one-time with a 14-day money-back guarantee, signed with an Apple Developer ID and notarized by Apple, closed source, and not on the Mac App Store. Clips are never uploaded and there is no account; the app sends one anonymous install check-in (a random id, the app version and license state), and a file you drop on the notch to share goes to your own Google Drive, not to any NotchBay server. If you are weighing it against the other notch apps, the Mac notch app roundup covers the field.

#Frequently asked questions

What is the shortcut for clipboard history on Mac?

There is no system-wide keystroke that opens a clipboard panel on its own. On macOS 26 the built-in route is Command-Space to open Spotlight, then Command-4 for the clipboard view. Clipboard managers set their own: Maccy opens with Shift-Command-C by default, and Raycast and Alfred expose a clipboard history command inside their launchers.

Is clipboard history saved after a restart on a Mac?

The one-item pasteboard is emptied when you log out or restart, and Tahoe's Spotlight history expires within hours regardless. Third-party clipboard managers write their history to disk, so it survives a restart; that is convenient and also why you should exclude your password manager and clear the history after copying something sensitive.

Which clipboard manager does Reddit recommend most?

Across r/macapps, r/mac and r/MacOS the same names keep coming back: Maccy for people who want free and open source, Raycast or Alfred for people who already live in a launcher, and Paste or Pastebot for people who want a designed visual history or paste filters and will pay for it. There is no single winner, and the split follows what people already have installed.

This page is maintained by the developer of NotchBay’s clipboard tray, and checked against the same pasteboard APIs every tool here uses. Spot an error, especially in a detail about someone else’s app? Email hello@thedeepflux.com and the page gets corrected.
Deepak YadavCrafting beautiful digital consumer products.

Product designer and indie hacker. Founder of Ossian Design Lab. Builds and ships business and consumer digital products in public.

Follow on X

Read next.

Look up.
It's all right there.