From 64cf9c47ed715186380003a4daac4b1090da51a5 Mon Sep 17 00:00:00 2001 From: Pratik Tripathy Date: Sun, 2 Aug 2020 01:38:43 +0530 Subject: [PATCH] Rectified conflicting keybinding for hide panel --- .config/Code/User/keybindings.json | 99 ++++++++++++++++-------------- 1 file changed, 52 insertions(+), 47 deletions(-) diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json index b4d9dfd..208385a 100755 --- a/.config/Code/User/keybindings.json +++ b/.config/Code/User/keybindings.json @@ -1,49 +1,54 @@ // Place your key bindings in this file to override the defaults [ - { - "key": "ctrl+alt+b", - "command": "bookmarks.toggle", - "when": "editorTextFocus" - }, - { - "key": "ctrl+shift+t", - "command": "workbench.action.terminal.new" - }, - { - "key": "ctrl+shift+alt+right", - "command": "editor.emmet.action.nextEditPoint" - }, - { - "key": "ctrl+shift+alt+t", - "command": "editor.emmet.action.matchTag" - }, - { - "key": "ctrl+shift+alt+p", - "command": "editor.emmet.action.wrapWithAbbreviation" - }, - { - "key": "alt+q", - "command": "workbench.action.terminal.focus" - }, - { - "key": "alt+q", - "command": "workbench.action.focusActiveEditorGroup", - "when": "terminalFocus" - }, - { - "key": "alt+e", - "command": "workbench.action.focusActiveEditorGroup" - }, - { - "key": "ctrl+alt+e", - "command": "python.execInTerminal" - }, - { - "key": "ctrl+alt+n", - "command": "explorer.newFile" - }, - { - "key": "ctrl+alt+g", - "command": "git.checkout" - } -] \ No newline at end of file + { + "key": "ctrl+alt+b", + "command": "bookmarks.toggle", + "when": "editorTextFocus" + }, + { + "key": "ctrl+shift+t", + "command": "workbench.action.terminal.new" + }, + { + "key": "ctrl+shift+alt+right", + "command": "editor.emmet.action.nextEditPoint" + }, + { + "key": "ctrl+shift+alt+t", + "command": "editor.emmet.action.matchTag" + }, + { + "key": "ctrl+shift+alt+p", + "command": "editor.emmet.action.wrapWithAbbreviation" + }, + { + "key": "alt+q", + "command": "workbench.action.terminal.focus" + }, + { + "key": "alt+q", + "command": "workbench.action.focusActiveEditorGroup", + "when": "terminalFocus" + }, + { + "key": "alt+e", + "command": "workbench.action.focusActiveEditorGroup" + }, + { + "key": "ctrl+alt+e", + "command": "python.execInTerminal" + }, + { + "key": "ctrl+alt+n", + "command": "explorer.newFile" + }, + { + "key": "ctrl+alt+g", + "command": "git.checkout" + }, + { + "key": "ctrl+shift+j", + "command": "editor.action.joinLines", + "when": "editorTextFocus" + } +]