Skip to content

Instantly share code, notes, and snippets.

@fukayatsu
Last active February 5, 2025 00:49
Show Gist options
  • Select an option

  • Save fukayatsu/c93d036e0b6cc010289facb67fc325e8 to your computer and use it in GitHub Desktop.

Select an option

Save fukayatsu/c93d036e0b6cc010289facb67fc325e8 to your computer and use it in GitHub Desktop.

Revisions

  1. fukayatsu revised this gist Aug 16, 2021. 1 changed file with 5 additions and 1 deletion.
    6 changes: 5 additions & 1 deletion vscode_fix.json
    Original file line number Diff line number Diff line change
    @@ -21,7 +21,11 @@
    "command"
    ],
    "optional":[
    "any"
    "fn",
    "command",
    "control",
    "option",
    "shift"
    ]
    }
    },
  2. fukayatsu created this gist Aug 13, 2021.
    47 changes: 47 additions & 0 deletions vscode_fix.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,47 @@
    {
    "title":"VSCode Fix",
    "rules":[
    {
    "description":"Fix Cmd+[",
    "_comment":"https://github.com/microsoft/vscode/issues/115651",
    "manipulators":[
    {
    "conditions":[
    {
    "type":"frontmost_application_if",
    "bundle_identifiers":[
    "^com\\.microsoft\\.VSCode"
    ]
    }
    ],
    "from":{
    "key_code":"open_bracket",
    "modifiers":{
    "mandatory":[
    "command"
    ],
    "optional":[
    "any"
    ]
    }
    },
    "to":[
    {
    "key_code":"caps_lock"
    },
    {
    "key_code":"open_bracket",
    "modifiers":[
    "command"
    ]
    },
    {
    "key_code":"caps_lock"
    }
    ],
    "type":"basic"
    }
    ]
    }
    ]
    }