Compare commits

...

2 Commits

2 changed files with 15 additions and 1 deletions

View File

@ -92,6 +92,11 @@
"command": "-editor.action.revealDefinition", "command": "-editor.action.revealDefinition",
"when": "editorHasDefinitionProvider && editorTextFocus" "when": "editorHasDefinitionProvider && editorTextFocus"
}, },
{
"key": "ctrl+shift+m",
"command": "-workbench.actions.view.problems",
"when": "workbench.panel.markers.view.active"
},
// Editing // Editing
{ {
"key": "shift+k", "key": "shift+k",

View File

@ -19,7 +19,7 @@
"editor.codeActionsOnSave": { "editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit" "source.fixAll.eslint": "explicit"
}, },
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.defaultFormatter": "vscode.typescript-language-features"
}, },
"[typescriptreact]": { "[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features" "editor.defaultFormatter": "vscode.typescript-language-features"
@ -123,6 +123,15 @@
"commands": [ "commands": [
"editor.action.goToReferences" "editor.action.goToReferences"
] ]
},
{
"before": [
"leader",
"q"
],
"commands": [
"workbench.actions.view.problems"
]
} }
], ],
// Window // Window