From f37b7e8a9e7f82cbeb02333df776727e09868541 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Tue, 29 Oct 2019 16:22:55 +0000 Subject: [PATCH] Remove more LaTeX bindings --- files/vscode-keybindings.json | 60 +++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/files/vscode-keybindings.json b/files/vscode-keybindings.json index 2d91810..bd5654f 100644 --- a/files/vscode-keybindings.json +++ b/files/vscode-keybindings.json @@ -138,5 +138,65 @@ "key": "ctrl+b", "command": "-markdown.extension.editing.toggleBold", "when": "editorTextFocus && !editorReadonly && editorLangId == 'markdown'" + }, + { + "key": "ctrl+l alt+b", + "command": "-latex-workshop.build", + "when": "config.latex-workshop.bind.altKeymap.enabled && editorLangId == 'latex'" + }, + { + "key": "ctrl+l alt+c", + "command": "-latex-workshop.clean", + "when": "config.latex-workshop.bind.altKeymap.enabled && editorLangId == 'latex'" + }, + { + "key": "ctrl+l alt+j", + "command": "-latex-workshop.synctex", + "when": "config.latex-workshop.bind.altKeymap.enabled && editorTextFocus && editorLangId == 'latex'" + }, + { + "key": "ctrl+l alt+v", + "command": "-latex-workshop.view", + "when": "config.latex-workshop.bind.altKeymap.enabled && editorLangId == 'latex'" + }, + { + "key": "ctrl+l alt+x", + "command": "-workbench.view.extension.latex", + "when": "config.latex-workshop.bind.altKeymap.enabled" + }, + { + "key": "ctrl+l", + "command": "-expandLineSelection", + "when": "editorFocus" + }, + { + "key": "ctrl+l", + "command": "-expandLineSelection", + "when": "textInputFocus" + }, + { + "key": "ctrl+l ctrl+l", + "command": "-expandLineSelection", + "when": "textInputFocus && editorLangId == 'latex'" + }, + { + "key": "ctrl+l ctrl+alt+8", + "command": "-latex-workshop.decrement-sectioning", + "when": "config.latex-workshop.bind.altKeymap.enabled && editorTextFocus && !editorReadonly && editorLangId == 'latex'" + }, + { + "key": "ctrl+l [", + "command": "-latex-workshop.decrement-sectioning", + "when": "config.latex-workshop.bind.altKeymap.enabled && editorTextFocus && !editorReadonly && editorLangId == 'latex'" + }, + { + "key": "ctrl+l ctrl+alt+9", + "command": "-latex-workshop.increment-sectioning", + "when": "config.latex-workshop.bind.altKeymap.enabled && editorTextFocus && !editorReadonly && editorLangId == 'latex'" + }, + { + "key": "ctrl+l ]", + "command": "-latex-workshop.increment-sectioning", + "when": "config.latex-workshop.bind.altKeymap.enabled && editorTextFocus && !editorReadonly && editorLangId == 'latex'" } ]