From b08a8e6cff8aefb0e9b175d06bb1ceb375a6353d Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 6 Nov 2019 09:29:52 +0000 Subject: [PATCH] Add key bindings for zooming in text --- files/vscode-keybindings.json | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/files/vscode-keybindings.json b/files/vscode-keybindings.json index 8f8351d..0d3945f 100644 --- a/files/vscode-keybindings.json +++ b/files/vscode-keybindings.json @@ -188,5 +188,25 @@ "key": "ctrl+l ]", "command": "-latex-workshop.increment-sectioning", "when": "config.latex-workshop.bind.altKeymap.enabled && editorTextFocus && !editorReadonly && editorLangId == 'latex'" - } + }, + { + "key": "ctrl+9", + "command": "-workbench.action.lastEditorInGroup" + }, + { + "key": "ctrl+9", + "command": "editor.action.fontZoomIn" + }, + { + "key": "ctrl+8", + "command": "editor.action.fontZoomOut" + }, + { + "key": "ctrl+0", + "command": "editor.action.fontZoomReset" + }, + { + "key": "ctrl+shift+0", + "command": "workbench.action.zoomReset" + }, ]