Replies: 1 comment
-
|
Nevermind, it's the typo of "front" ("fromt") above. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a rule to make command-control-c/v work for copy/paste in terminals only. It works for paste, but not for copy. If I change the modifiers, it works, but this SPECIFIC combination doesn't work. Here's the JSON for the rule.
{ "description": "Alt(command)+ctrl-c/v for copy/paste in Terminal", "manipulators": [ { "type": "basic", "from": { "key_code": "c", "modifiers": { "mandatory": [ "command", "control" ] } }, "to": { "key_code": "c", "modifiers": ["left_command"] }, "conditions": [ { "type": "fromtmost_application_if", "bundle_identifiers": [ "com.apple.Terminal" ] } ] }, { "type": "basic", "from": { "key_code": "v", "modifiers": { "mandatory": [ "command", "control" ] } }, "to": { "key_code": "v", "modifiers": ["left_command"] }, "conditions": [ { "type": "frontmost_application_if", "bundle_identifiers": [ "com.apple.Terminal" ] } ] } ] },command-ctrl-c doesn't copy anything, but command-ctrl-v doesn't work.
I have tried changing
commandandcontroltoleft_commandandleft_control, but it makes no difference.Any help would be appreciated.
Beta Was this translation helpful? Give feedback.
All reactions