Rectified conflicting keybinding for hide panel

This commit is contained in:
Pratik Tripathy
2020-08-02 01:38:43 +05:30
parent ee054e9290
commit 64cf9c47ed

View File

@@ -1,49 +1,54 @@
// Place your key bindings in this file to override the defaults // Place your key bindings in this file to override the defaults
[ [
{ {
"key": "ctrl+alt+b", "key": "ctrl+alt+b",
"command": "bookmarks.toggle", "command": "bookmarks.toggle",
"when": "editorTextFocus" "when": "editorTextFocus"
}, },
{ {
"key": "ctrl+shift+t", "key": "ctrl+shift+t",
"command": "workbench.action.terminal.new" "command": "workbench.action.terminal.new"
}, },
{ {
"key": "ctrl+shift+alt+right", "key": "ctrl+shift+alt+right",
"command": "editor.emmet.action.nextEditPoint" "command": "editor.emmet.action.nextEditPoint"
}, },
{ {
"key": "ctrl+shift+alt+t", "key": "ctrl+shift+alt+t",
"command": "editor.emmet.action.matchTag" "command": "editor.emmet.action.matchTag"
}, },
{ {
"key": "ctrl+shift+alt+p", "key": "ctrl+shift+alt+p",
"command": "editor.emmet.action.wrapWithAbbreviation" "command": "editor.emmet.action.wrapWithAbbreviation"
}, },
{ {
"key": "alt+q", "key": "alt+q",
"command": "workbench.action.terminal.focus" "command": "workbench.action.terminal.focus"
}, },
{ {
"key": "alt+q", "key": "alt+q",
"command": "workbench.action.focusActiveEditorGroup", "command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus" "when": "terminalFocus"
}, },
{ {
"key": "alt+e", "key": "alt+e",
"command": "workbench.action.focusActiveEditorGroup" "command": "workbench.action.focusActiveEditorGroup"
}, },
{ {
"key": "ctrl+alt+e", "key": "ctrl+alt+e",
"command": "python.execInTerminal" "command": "python.execInTerminal"
}, },
{ {
"key": "ctrl+alt+n", "key": "ctrl+alt+n",
"command": "explorer.newFile" "command": "explorer.newFile"
}, },
{ {
"key": "ctrl+alt+g", "key": "ctrl+alt+g",
"command": "git.checkout" "command": "git.checkout"
} },
] {
"key": "ctrl+shift+j",
"command": "editor.action.joinLines",
"when": "editorTextFocus"
}
]