",
"command": "type",
"args": {
"text": "#"
},
"when": "editorTextFocus && !editorReadonly"
},
//chiocciola
{
"key": "cmd+[Semicolon]",
"command": "type",
"args": {
"text": "@"
},
"when": "editorTextFocus && !editorReadonly"
},
//punto dal tastierino numerico
{
"key": "numpad_decimal",
"command": "type",
"args": {
"text": "."
},
"when": "editorTextFocus && !editorReadonly"
},
//salva
{
"key": "ctrl+s",
"command": "workbench.action.files.save"
},
//salva tutto
{
"key": "ctrl+shift+s",
"command": "workbench.action.files.saveFiles"
},
//copia
{
"key": "ctrl+c",
"command": "editor.action.clipboardCopyAction"
},
//taglia
{
"key": "ctrl+x",
"command": "editor.action.clipboardCutAction"
},
//incolla
{
"key": "ctrl+v",
"command": "editor.action.clipboardPasteAction"
},
//commenta blocco
{
"key": "ctrl+k ctrl+c",
"command": "editor.action.addCommentLine",
"when": "editorTextFocus && !editorReadonly"
},
//decommenta blocco
{
"key": "ctrl+k ctrl+u",
"command": "editor.action.removeCommentLine",
"when": "editorTextFocus && !editorReadonly"
},
//seleziona tutto
{
"key": "ctrl+a",
"command": "editor.action.selectAll"
},
//annulla
{
"key": "ctrl+z",
"command": "undo"
},
//trova
{
"key": "ctrl+f",
"command": "actions.find",
"when": "editorFocus || editorIsOpen"
},
{
"key": "ctrl+h",
"command": "-deleteLeft",
"when": "textInputFocus"
},
{
"key": "ctrl+h",
"command": "editor.action.startFindReplaceAction",
"when": "editorFocus || editorIsOpen"
},
{
"key": "alt+cmd+f",
"command": "-editor.action.startFindReplaceAction",
"when": "editorFocus || editorIsOpen"
},
{
"key": "ctrl+shift+h",
"command": "workbench.action.replaceInFiles"
},
{
"key": "shift+cmd+h",
"command": "-workbench.action.replaceInFiles"
},
{
"key": "ctrl+[Semicolon]",
"command": "workbench.action.terminal.new"
}
]
And boom! Now the keyboard works perfectly everywhere.
Click to expand...