Created
March 11, 2026 12:08
-
-
Save RobinBoers/e6340505c5768016585d38c43d0bf68b to your computer and use it in GitHub Desktop.
Ctrl+L => Cmd+L (Open url location) (Only in browsers)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "description": "Ctrl+L => Cmd+L (Open url location) (Only in browsers)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.mozilla\\.firefox$", | |
| "^org\\.mozilla\\.firefoxdeveloperedition$", | |
| "^org\\.mozilla\\.nightly$", | |
| "^com\\.microsoft\\.Edge", | |
| "^com\\.google\\.Chrome$", | |
| "^com\\.brave\\.Browser$", | |
| "^com\\.apple\\.Safari$" | |
| ], | |
| "type": "frontmost_application_if" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "l", | |
| "modifiers": { | |
| "mandatory": ["control"], | |
| "optional": ["any"] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "l", | |
| "modifiers": ["left_command"] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment