Skip to content

Instantly share code, notes, and snippets.

@eruffaldi
Created December 27, 2023 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eruffaldi/aa906f664925c6d160f6529386d2d3cd to your computer and use it in GitHub Desktop.
Save eruffaldi/aa906f664925c6d160f6529386d2d3cd to your computer and use it in GitHub Desktop.
Add tilde shortcut to Visual Studio for Code
// Run command Open Keyboard Shortcuts (JSON)
// AltGr+ì is oem_6 ==> use Open Keyboard Shortcuts , select record key and press the shortcut
[
{ "key": "oem_6",
"command": "editor.action.insertSnippet",
"when": "editorTextFocus",
"args": {
"snippet": "~"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment