From 83515cdb92fa824277f96269a57fc83fff29c8b9 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 7 Nov 2021 22:26:08 +0000 Subject: [PATCH] Add shortcuts for incrementing and changing case --- files/vscode-keybindings.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/files/vscode-keybindings.json b/files/vscode-keybindings.json index 90b529b..fe64a05 100644 --- a/files/vscode-keybindings.json +++ b/files/vscode-keybindings.json @@ -44,4 +44,36 @@ "key": "ctrl+shift+0", "command": "workbench.action.zoomReset" }, + { + "key": "alt+c u", + "command": "extension.changeCase.upper" + }, + { + "key": "alt+c l", + "command": "extension.changeCase.lower" + }, + { + "key": "alt+c alt+up", + "command": "editor.emmet.action.incrementNumberByOne" + }, + { + "key": "alt+c alt+down", + "command": "editor.emmet.action.decrementNumberByOne" + }, + { + "key": "alt+c alt+pagedown", + "command": "editor.emmet.action.decrementNumberByTen" + }, + { + "key": "alt+c alt+pageup", + "command": "editor.emmet.action.incrementNumberByTen" + }, + { + "key": "alt+c down", + "command": "editor.emmet.action.decrementNumberByOneTenth" + }, + { + "key": "alt+c up", + "command": "editor.emmet.action.incrementNumberByOneTenth" + } ]