Visual Studio Code - Code Editing. Redefined

a Text Editor created and maintained by Microsoft.

Tool Use

2025, Mar 05.
How To Create Custom VSCode Snippets
WebDev Simplified on YouTube.

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"
}
]
https://youtu.be/ifTF3ags0XI?si=eWB12fOiURyniG8U
https://youtu.be/lxRAj1Gijic?si=GLRWAxtOtD75c7KS
https://youtu.be/lxRAj1Gijic?si=DqzXItZ8hEmW1q3D