3/13/2026 at 1:01:19 AM
If you are already using a universal (OS-wide) tool for Voice, this should just work in Claude or otherwise. Even though I’m a smooth and pretty quick typer, I sometimes speak using Handy[1] and Claude types it out. Handy is seriously accurate.It does look like more and more apps/tools are going to come built-in with - you can either type or talk - go wild.
Ask: Someone commented some time back that they mapped their CAPSLOCK key to push-to-talk. I’ve looked around and could not figure out without a third party tool. I’d love to know how to do it in macOS - map the un-used CAPSLOCK Key to Push to Talk.
by Brajeshwar
3/13/2026 at 1:31:52 PM
Claude Code's /voice mode isn't very accurate comparing to other speech-to-text (e.g. Google Translate).Also it takes about 500ms to activate after you press SPACE, so the initial words are missed out. It took me some time to realize it.
Does Handy has a better speech-to-text accuracy? Is there an activation delay?
by nivertech
3/13/2026 at 10:02:24 AM
I've had success in the past in customizing macOS key bindings using Karabiner: https://karabiner-elements.pqrs.org/by jaen
3/14/2026 at 2:52:50 PM
Trying this one. It worked with a simple script mapping CAPSLOCK to the default Push-to-talk (OPTION + Space); ```
{
"description": "Caps Lock to Option+Space (Handy push-to-talk)",
"manipulators": [
{
"from": { "key_code": "caps_lock" },
"to": [
{
"key_code": "spacebar",
"modifiers": ["left_option"]
}
],
"type": "basic"
}
]
}
```
by Brajeshwar