Skip to content

Instantly share code, notes, and snippets.

@josharian
Created February 2, 2024 17:52
Show Gist options
  • Save josharian/674ab547578e3d1e905f706bb549a440 to your computer and use it in GitHub Desktop.
Save josharian/674ab547578e3d1e905f706bb549a440 to your computer and use it in GitHub Desktop.
{
"description": "Map left command tap to ctrl+c in VSCode",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.microsoft\\.VSCode$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "left_command",
"modifiers": {
"optional": [
"any"
]
}
},
"parameters": {
"basic.to_if_alone_timeout_milliseconds": 500
},
"to": [
{
"key_code": "left_command",
"lazy": true
}
],
"to_if_alone": [
{
"key_code": "c",
"modifiers": [
"left_control"
]
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment