Raccourcis clavier (JSON)
Chercher le fichier (maj+ctrl+P):
Préférences: Ouvrir les raccourcie clavier (JSON)
// Placer vos combinaisons de touches dans ce fichier pour remplacer les valeurs par défaut
[
// Etend la sélection
{
"key": "ctrl+d",
"command": "editor.action.smartSelect.expand",
"when": "editorTextFocus"
},
// Trouve toutes les occurences du mot sélectionné
{
"key": "ctrl+shift+d",
"command": "editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
// Ouvre un fichier
{
"key": "ctrl+o",
"command": "workbench.action.quickOpen"
},
// Ouvre le fichier courant dans l'explorer de l'OS
{
"key": "shift+ctrl+o",
"command": "revealFileInOS",
},
// Commandes
{
"key": "ctrl+p",
"command": "workbench.action.showCommands"
},
// Crée un nouveau fichier dans l'explorer
{
"key": "ctrl+n",
"command": "explorer.newFile"
},
]