docs/keyboard-shortcut-password-fields.md
Some users may experience issues where their Maccy keyboard shortcut stops working, particularly in password fields or secure input contexts. This commonly occurs when using shortcuts that produce visible characters, such as Option+C which generates the "ç" character.
macOS blocks keyboard event listeners that output text in secure fields. When a keyboard combination generates a character (like Option+C → "ç"), macOS security features prevent third-party applications from intercepting these key events in password fields and other secure input contexts.
Choose Different Shortcut: Select a keyboard combination that doesn't produce visible characters (e.g., Cmd+Shift+V)
If you want to use a keyboard shortcut that is used by the system (and produces text output), you can use Karabiner-Elements to remap this shortcut to another keyboard shortcut. For example, remapping Option+C to Cmd+Shift+C.
Download and Install Karabiner-Elements
Configure Key Remapping
key_code and modifiers values as neededExample Karabiner Rule
This example remaps Option+C to Cmd+Shift+C:
{
"description": "Remap option+c to cmd+shift+c for Maccy trigger",
"manipulators": [
{
"from": {
"key_code": "c",
"modifiers": {
"mandatory": ["left_alt"],
"optional": ["any"]
}
},
"to": [
{
"key_code": "c",
"modifiers": ["left_command", "left_shift"]
}
],
"type": "basic"
}
]
}
Update Maccy Settings
Cmd+Shift+C)Cmd+Shift+V)After implementing the solution:
This approach allows you to continue using your preferred key combination while ensuring compatibility with macOS security features.