Published: · Read time: 4 min
If you’re looking for regex search in Maccy, here’s the honest answer: Maccy uses fuzzy search, not regular expressions. That sounds like a limitation, but for clipboard recall it’s usually faster and more forgiving. Here’s how Maccy’s search actually works, how to get the most from it, and what to do in the rare case you genuinely need regex.
How Maccy search works
Press ⌘⇧C to open Maccy. The search field is focused immediately — just start typing. As you type, Maccy filters your clipboard history with fuzzy matching: it finds items where your typed characters appear in order, even if they’re not consecutive.
- Type
config→ matches «application.config.json», «my config file», «CONFIG_PATH» - Type
jsn→ matches «JSON», «lesson.js», «jason@email.com» - Type
dckr→ matches «Docker», «dock review»
You don’t need exact spelling, full words, or correct order beyond the character sequence. This is why fuzzy search is fast: you type a few memorable characters and the right clip surfaces.
Why fuzzy beats regex for clipboard
Regex (regular expressions) is powerful for structured pattern matching — finding all email addresses, all phone numbers in a specific format, all lines starting with a digit. But for clipboard recall, you usually know roughly what you copied, not its exact structure. You think «that Docker command» or «the API endpoint,» not «items matching ^https?://.*\/api\/.*$.»
Fuzzy search matches how memory works: a fragment, a vibe, a few characters. Typing dock is faster than writing a regex pattern, and it surfaces the Docker command instantly. For the 99% case of «find that thing I copied,» fuzzy wins on speed.
Search tips
- Use distinctive fragments. Search «kube» not «the» — rare character sequences narrow results faster.
- Search immediately after ⌘⇧C. No clicking needed; the field is already focused.
- Combine with ⌘1–⌘9. Once a search narrows the list, the top results map to ⌘1, ⌘2, etc. for instant paste.
- Search then ⌥+Return. Find the item, then hold ⌥ and press Return to paste it without formatting.
If you genuinely need regex
Some workflows really do need pattern matching — extracting all URLs from clipboard history, filtering by format, transforming matched text. Maccy doesn’t do this, and that’s by design (it’s a focused, lightweight tool). Your options:
- Pastebot ($12.99) — has text filters that can process clipboard content with rule-based transformations.
- Keyboard Maestro (~$36) — full regex support in macros; can match and transform clipboard content with patterns.
- Pipe through Terminal —
pbpaste | grep -E 'pattern' | pbcopyapplies regex to the current clipboard using standard Unix tools, free.
For most people, none of this is necessary — Maccy’s fuzzy search handles daily clipboard recall well. Reach for regex tools only when you have a specific structured-extraction need. Shortcuts. Features. Comparison.
FAQ
Does Maccy support regex search?
No. Maccy uses fuzzy search, which matches typed characters in order anywhere in a clip. For regex, use Pastebot, Keyboard Maestro, or pipe through Terminal with grep.
How does fuzzy search work?
Type characters and Maccy finds clips where those characters appear in sequence, even non-consecutively. «jsn» matches «JSON». Fast and forgiving.
Is fuzzy search worse than regex?
For clipboard recall, no — it’s faster. Regex is better for structured extraction (all emails, all URLs in a format), which is a different task.
Can I run regex on my clipboard for free?
Yes. In Terminal: pbpaste | grep -E ‘pattern’ | pbcopy applies regex to the current clipboard with standard tools.
How do I search Maccy fastest?
Press ⌘⇧C and immediately type a distinctive fragment. The field is pre-focused, so no clicking needed.
