#What “copy from the clipboard” actually means
The clipboard is a single hidden slot in memory that holds the last thing you copied. When you press Command and C, macOS writes your selection into that slot. When you press Command and V, it reads the slot back out wherever your cursor is. So the phrase “copy from the clipboard” is slightly backwards: you do not copy from the clipboard, you paste from it. Copying is how things get onto the clipboard in the first place.
I labor this point because it explains almost every clipboard question people ask. There is no folder of copied items, no scrollable list, no undo. The slot holds one thing, and the next copy overwrites it with no warning. Once you internalize that, the rest is just keystrokes. If you want the same idea covered from the copying side, I wrote a companion piece on how to copy on Mac that starts from a blank slate.
#How to copy and paste from the clipboard
The mechanics of how to copy from clipboard on mac come down to three ways that do the same job. Use whichever your hands reach for.
- Keyboard. Select something, press Command and C to copy, click where you want it, press Command and V to paste. This is the fastest path and the one worth building into muscle memory.
- Menu bar. With something selected, open the Edit menu in whatever app you are in. Copy and Paste are near the top. Every well-behaved Mac app puts them there, which is handy when a shortcut is not working.
- Right click. Control-click or two-finger-click the selection and pick Copy, then right click the destination and pick Paste. Slower, but it works everywhere and needs no keys.
A few variants earn their place on the list:
| Shortcut | What it does |
|---|---|
| Cmd C | Copy the selection to the clipboard |
| Cmd X | Cut: copy, then remove the original |
| Cmd V | Paste the clipboard here |
| Cmd Shift V | Paste and match the surrounding style (strips fonts and colors) |
| Cmd A | Select all, so you copy the whole thing |
Command is the ⌘ key. On some older apps the paste-and-match-style shortcut is Cmd Option Shift V instead; check the app’s Edit menu if plain paste keeps its formatting.
That paste-and-match-style trick is the one I reach for most. It drops the invisible fonts, sizes and link colors that ride along when you copy from a web page, so text lands looking like the document it is going into rather than the site it came from.
#Where the clipboard lives, and how to see it
The clipboard has no icon and no window of its own, which is why people go looking for it and find nothing. There is one way to view it, and it is easy to miss.
- Click the desktop or open a Finder window so Finder is the active app.
- In the menu bar, open Edit.
- Choose Show Clipboard.
A small window appears with whatever you last copied: a line of text, an image, a file reference. That is the entire clipboard. It is read-only, you cannot scroll back, and closing the window changes nothing. The item stays put until you copy something else or restart the Mac. For a broader tour of how the clipboard behaves across apps, I collected it in the Mac clipboard reference.
One thing the Show Clipboard window will not do is remember. There is no “previous item” button because macOS does not keep a previous item. That gap is the whole reason clipboard managers exist, which is the next section.
#Copying more than one thing: clipboard history
Here the honest answer to a common hope is no: macOS will not let you stack several copies and paste them one by one. Copy a second item and the first is gone. If you have ever copied an address, then copied a phone number, and watched the address vanish, that is the one-slot limit doing exactly what it is designed to do.
You have two real ways around it.
Spotlight clipboard search
Newer versions of macOS surface recent copies in Spotlight. Press Command and Space, and in the right build you can search back through the last things you copied and drop one into the frontmost app. It is limited and it is not configurable, but it is built in and costs nothing, so it is worth checking on your own Mac before you install anything.
A clipboard manager
A clipboard manager is a small app that watches the clipboard and keeps every copy in a searchable list, so nothing is ever really lost. This is the category that answers “where are my copied items,” and it is mature. Maccy is a well-loved free and open-source option; Paste is a polished, paid one with a big visual history. Both do the core job well, and either is a fine pick if a clipboard history is all you want.
I went a different direction with my own app: instead of another menu bar icon, the clipboard history lives in the MacBook notch. Same idea, different home. More on that at the end, and I kept it out of the way until then on purpose.
#When copy and paste stops working
Every so often Command and V does nothing, or pastes something old. On the Mac this almost always traces back to one background process called pboard, the tiny daemon that manages the clipboard. When it hangs, copy and paste hang with it. The fix is to restart it.
- Open Activity Monitor (it is in Applications, then Utilities, or search Spotlight for it).
- In the search box, type pboard.
- Select the
pboardprocess and click the stop button, then confirm Quit.
macOS relaunches pboard on its own within a second, with a fresh, empty clipboard. Copy something and paste it; it should work again. If you prefer the command line, killall pboard in Terminal does the same thing. Either way you lose whatever was on the clipboard, which is a fair trade for getting copy and paste back.
If restarting pboard does not help, work down this list:
- Restart the app you are copying from. A single misbehaving app can fail to write to the clipboard while everything else is fine.
- Check the source allows copying. Some PDFs, DRM-protected pages and secure fields block copy on purpose. Nothing is broken; the content is locked.
- Try a different pair of apps. If copy works between Notes and TextEdit but not into one specific app, the problem is that app, not your Mac.
- Restart the Mac. The blunt instrument, but it clears any stuck state the steps above missed.
#The clipboard history I built into the notch
Mine, so weigh the enthusiasm accordingly. I build NotchBay, a Mac app that puts a clipboard tray in the MacBook notch. It keeps the last 60 clips and sorts them by type on its own: text, links, colors, images and files each land in their own lane. Screenshots get run through OCR, so you can search the words inside a screenshot, not just its filename. Clips you pin never expire.
The design rule underneath it is that nothing leaves your Mac. There is no account to create, and your clips are never uploaded. The app sends one anonymous install check-in with a random id, the version and the license state, and that is the extent of the network traffic tied to it.
The honest limits, because every app has them: NotchBay needs macOS 26 (Tahoe) or later and a MacBook with a notch, since the tray anchors to the cutout and does not render on an Intel Mac or an external display. The tray holds 60 clips plus your pins; it is a fast recent history, not an unlimited archive. If a bottomless searchable vault is what you need, one of the dedicated managers above fits better, and I would rather say so than oversell. It is signed with an Apple Developer ID and notarized by Apple, so Apple has scanned the build before it reaches you.
#Frequently asked questions
How do I find the clipboard on my Mac?
Open Finder, then choose Edit in the menu bar and click Show Clipboard. A window appears showing the single item currently on the clipboard. It is view-only: you cannot edit or scroll through past copies there, because macOS keeps only the most recent item.
How do I copy and paste from the clipboard?
Select the text or file, press Command and C to copy it onto the clipboard, click where you want it, then press Command and V to paste. Copy loads the clipboard; paste reads it back. You can paste the same item as many times as you like until you copy something else.
Why is my Mac not letting me copy and paste?
Usually the pboard process has hung. Open Activity Monitor, search for pboard, select it and quit it; macOS relaunches it and copy and paste work again. If that does not help, restart the app you are copying from, check the app is not blocking copy, and as a last resort restart the Mac.
How do I find copied items on my clipboard Mac?
macOS keeps only the last item, so there is no built-in list of copied items. To see everything you have copied you need a clipboard history tool: Spotlight can surface recent copies in newer macOS, and dedicated managers such as Maccy, Paste or NotchBay keep a scrollable, searchable history.