7

In VS Code, is there a quick way to change the indent of a block of selected lines like in Visual Studio? I can't find a suitable option under the Edit menu.

Old Geezer
  • 14,854
  • 31
  • 111
  • 198
  • This feature is called `outdent` in VSCode/ vscodium, and when you search for it in the keyboard shortcut configuration you can assign a keyboard shortcut to it. – Golar Ramblar Jan 28 '23 at 21:18

1 Answers1

1

Using Notepad++, you can select the lines you want then press Tab to indent and Shift Tab to unindent.

Vlam
  • 1,622
  • 1
  • 8
  • 17
  • Do you mean using Notepad++ as an editor plugin in VS Code? – Old Geezer May 15 '18 at 04:27
  • 2
    https://stackoverflow.com/questions/40492960/how-to-indent-format-a-selection-of-code-in-vscode-with-ctrlshiftf I think that should be what you want. – Vlam May 15 '18 at 05:48