From 3d2a9a9e202a73be4ba7143c1551f3a443d8ed20 Mon Sep 17 00:00:00 2001 From: colin Date: Tue, 9 Apr 2019 19:49:23 +0800 Subject: [PATCH] fix --- keybindings.json | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/keybindings.json b/keybindings.json index f4005bc..b8dc42d 100644 --- a/keybindings.json +++ b/keybindings.json @@ -69,10 +69,6 @@ "key": "ctrl+shift+=", "command": "workbench.action.zoomIn" }, - { - "key": "ctrl+shift+-", - "command": "workbench.action.zoomOut" - }, { "key": "ctrl+2", "command": "workbench.action.focusSecondEditorGroup" @@ -148,5 +144,19 @@ { "key": "ctrl+shift+r", "command": "workbench.action.reopenClosedEditor" + }, + { + "key": "ctrl+shift+-", + "command": "workbench.action.zoomOut" + }, + { + "key": "ctrl+[", + "command": "-editor.action.outdentLines", + "when": "editorTextFocus && !editorReadonly" + }, + { + "key": "ctrl+]", + "command": "-editor.action.indentLines", + "when": "editorTextFocus && !editorReadonly" } ]