From 0d449009c757d0bd83dcfe106714acd4240e8668 Mon Sep 17 00:00:00 2001 From: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Date: Sun, 12 Sep 2021 16:10:46 -0300 Subject: [PATCH] code: change zoom in/out keybinds --- .config/Code/User/keybindings.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json index b2de557..095b855 100644 --- a/.config/Code/User/keybindings.json +++ b/.config/Code/User/keybindings.json @@ -8,6 +8,34 @@ "command": "editor.action.copyLinesDownAction", "when": "editorTextFocus && !editorReadonly" }, + { + "key": "ctrl+=", + "command": "-workbench.action.zoomIn" + }, + { + "key": "ctrl+=", + "command": "editor.action.fontZoomIn" + }, + { + "key": "ctrl+-", + "command": "editor.action.fontZoomOut" + }, + { + "key": "ctrl+-", + "command": "-workbench.action.zoomOut" + }, + { + "key": "ctrl+numpad_add", + "command": "-workbench.action.zoomIn" + }, + { + "key": "ctrl+shift+-", + "command": "workbench.action.zoomOut" + }, + { + "key": "ctrl+numpad_subtract", + "command": "-workbench.action.zoomOut" + }, // Remap Alt+Number to Ctrl+Number to switch tabs {