From d95b9d7d3a7f77b8dafebdcca0f3e3d8c5ae60bc Mon Sep 17 00:00:00 2001 From: Vaida <91354917+Vaida12345@users.noreply.github.com> Date: Tue, 29 Aug 2023 17:38:13 +1000 Subject: [PATCH] Shortcut for reindent selection using `ctrl + i` --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index 76a6a9f..0928aec 100755 --- a/package.json +++ b/package.json @@ -199,6 +199,11 @@ "key": "cmd+d", "command": "editor.action.duplicateSelection", "when": "editorTextFocus" + }, + { + "key": "ctrl+i", + "command": "editor.action.reindentselectedlines", + "when": "editorTextFocus" } ] },