Created
January 17, 2022 15:18
-
-
Save canpoyrazoglu/a06a0f5c93204323eaac9553ba510205 to your computer and use it in GitHub Desktop.
Regain Touch Bar "back" functionality of Vscode lost after Touch Bar is gone with Karabiner-Elements (which is actually possible with a hard shortcut of Ctrl+Hyphen) by assigning it to fn key.
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
[...] | |
"rules": [ | |
{ | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.microsoft\\.VSCode$" | |
], | |
"type": "frontmost_application_if" | |
} | |
], | |
"description": "Vscode Ctrl-; goto location", | |
"from": { | |
"key_code": "fn" | |
}, | |
"to": [ | |
{ | |
"key_code": "hyphen", | |
"modifiers": [ | |
"left_control" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} | |
] | |
[...] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment