Visual Studio Code - Code Editing. Redefined

a Text Editor created and maintained by Microsoft.

Tool Use

Create your own Keybindings

The Keybindings are stored in a JSON file at the following path: Users/[your-username]/Library/Application Support/[App Name]/User/keybindings.json
For me, the path is: Users/mpstaton/Library/Application Support/Windsurf/User/keybindings.json
The Keybindings JSON file takes this as the data:
json
// Place your key bindings in this file to override the defaults
[{
   "key": "ctrl+shift+c",
   "command": "editor.action.insertSnippet",
   "when": "editorIsOpen"
}
]