Highlight text, run the command, get a Markdown blockquote pasted back.
Primary use case: quote CLI agent output and paste it into the next prompt.
> prefixed on every line.Example: hello becomes:
> hello
Your original clipboard is restored afterward.
This is a no-view command, so a hotkey quotes without opening Raycast. Recommended hotkey: ✦ (Caps Lock) + C. Set it in Raycast → Settings → Extensions → Quick Quote. Caps Lock as Hyper is a common remapping (e.g. via Karabiner-Elements); pick any free combo if you use something else.
Raycast needs macOS Accessibility permission. Grant it in System Settings → Privacy & Security → Accessibility. Both read paths depend on it: the Accessibility API read and the Cmd+C keystroke fallback.
Most apps: via the macOS Accessibility API.
Terminals and other apps that block AX: the command sends Cmd+C itself and reads the clipboard. It checks the macOS pasteboard change count around that keystroke and only quotes text the keystroke actually copied, so a stale clipboard (say, a password copied earlier) is never pasted. Terminals that auto-copy on select work too, because they re-copy the selection on Cmd+C.