Skip to content

Instantly share code, notes, and snippets.

@canpoyrazoglu
Created January 17, 2022 15:18
Show Gist options
  • Save canpoyrazoglu/a06a0f5c93204323eaac9553ba510205 to your computer and use it in GitHub Desktop.
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.
[...]
"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