'VSCode: keeping indents on empty lines

Is it possible to make VSCode keep indents on empty lines?

Could not find such a setting neither natively nor in "Beautify" extension.

Example of desired behavior:

enter image description here

UPDATE: eventually I've just switched to Prettier - and never had to think about code style again as it's just being formatted automatically for me.



Solution 1:[1]

Go to File > Preferences > Settings. On the right side, add the line:

,"editor.trimAutoWhitespace": false

It worked for me perfectly.

Solution 2:[2]

Bit of an old question, but I found that a combination of the settings:

"editor.trimAutoWhitespace": false,
"editor.renderWhitespace": "all"

...worked for me.

NOTE: (19/03/2021)

It appears that this issue, registered on GitHub, is still an open case.

Solution 3:[3]

I had the same issue but after removing :

"editor.autoIndent": "none"

I was good to go.

Solution 4:[4]

As of: 2022-02-01

Here is the solution that worked for me even with VSCODE formatting(linting) on:

There are two native VSCODE settings that format your code automatically:

  1. "editor.formatOnSave": true,
  2. "editor.formatOnType": true,

These settings affect your text editor only if "editor.defaultFormatter" is not null

Here are the problems

  1. The "editor.trimAutoWhitespace" VSCODE setting solves the problem but only works on the "editor.formatOnType" autoformat, when you save the document this setting is ignored.
  2. You may also want to trimAutoWhitespaces on all cases but the ones where you are leaving an indent on an empty row. (this was my case).

In my case, while coding, I test my code in the terminal chunck by chunck. The problem with, in my case, python is that the end of a for loops and a conditional is defined by indentation. In this case since the terminal run the code line by line, and not in chuncks, with the removal of the indentation, the terminal thinks that the for and if commands are finished before they actually are.

Here is the solution:

  1. Never define an edit.defaultFormatter in your VSCODE settings define it per language.

How do you do that?

  • Change VSCODE "editor.defaultFormatter" to null as in:
    "editor.defaultFormatter": null,

  • Change the language formatter to your prefered one. In my case:
    python.formatting.provider": "black"

VSCODE gives you the possibility of choosing a formatting (linting) provider for any language. These providers' rules are way more detailed than the VSCode native rules. In VS code press CRTL+SHIFT+P and search for "preferences: Configure Language Specific Settings...". Then define your formatting provider for said language.

  1. Every provider (in my case "black") provides the option of ignoring some sort of formatting rule. Set the ignore argument for this provider. In my case I only ignore 2 rules and my setting is:
  • "python.formatting.blackArgs": [ "--ignore=E501,W293" ],

Rule E501 = Row with more than 80 character.

Rule W293 = Empty Row containing only WhiteSpaces.

Ignoring W293 allows the Auto Trim White Spaces to keep working for every kind of trailing White Spaces except for the case referred to in W293.

Solution 5:[5]

That is probably eslint (and/or beautify) doing that. Look at

"no-trailing-spaces": ["error", { "skipBlankLines": false }],

I have that in my eslintrc.json file and so I get errors on blank lines with spaces or tabs on them. Setting "skipBlankLines" to true might work for you.

Solution 6:[6]

Timestamp:
2021, using VS Code v1.56.2

Use Case:

You use editor.action.trimTrailingWhitespace. Later you wish to write new code in a function. You navigate to a blank line within the function, but discover this line isn't indented and is completely empty. In this scenario, you have four choices:

  1. Hit Tab multiple times until your cursor is at the proper indentation.
  2. Navigate up to a line with proper indentation, press End, then press Enter.
  3. Click your mouse to the right of a properly indented line, then press Enter.
  4. Press Ctrl + ] repeatedly to indent the empty line.[See Footnote 1]

This answer automates this workflow by inserting the indentation for you (when you navigate to an empty line surrounded by indented lines).

Background: Spent 3 hours trying all of the solutions on this page (and many different extensions). Couldn't find anything else which worked.

Solution via Extension

implicit-indent Extension by jemc:
https://marketplace.visualstudio.com/items?itemName=jemc.vscode-implicit-indent

Automatically indents an empty line when navigated to (if its surrounding lines are indented).

Functionality

From experimenting, here's how implicit-indent seems to work:

  • Checks and matches either tab or space indentation automatically.

  • Determines spaces or tabs based on indentation of surrounding text, regardless of editor settings.[See Footnote 2]

  • Clicking on an empty line automatically indents to match surroundings.

  • If pressing the up ? or down ? arrow key navigates the caret (a.k.a. text cursor) to an empty line, implicit-indent will automatically indent the line and place the cursor to the right of the indentation (making it feel the same as if the line were already indented).

    -> Before ? or ? is pressed, it doesn't matter what column the caret is on, this extension will trigger regardless.
     

  • Navigating to an empty line matches nested indentation.
    Assume you have the following:

    Where |n| represents a line
    and c represents the caret / text cursor
    and only line |2| is empty.
    
    |1|    indented line
    |2|                         (empty line)
    |3|  c    indented line
    
         ^ assume caret is on line |3|
           (caret can be at any column)
    

    Pressing the up ? arrow key results in the following:

    |1|   indented line
    |2|      c 
    |3|      indented line
    
             ^ Line |2| (previously empty)
               is automatically indented to 
               match nested indentation 
               of line |3| 
    
               and the caret is automatically moved
               to the end of the inserted whitespace
    
               (as if the line were already indented).
    

VS Code

As of 2021 May, the following GitHub issues are still unresolved:

https://github.com/microsoft/vscode/issues/49661
https://github.com/microsoft/vscode/issues/54210
https://github.com/OmniSharp/omnisharp-vscode/issues/1980
https://github.com/OmniSharp/omnisharp-vscode/issues/1680

Using implicit-indent is the only workaround I've discovered so far.

I'll amend this answer when automatic indentation is added to VS Code's native settings.




[Footnote 1]

As an alternative to this extension, you can use Tab or the following indent/unindent functionality built-in to VS Code to manually indent an empty line. Slightly out of scope, but it's a good hotkey to know about.

Default built-in hotkeys are:

  • Hotkey: CTRL + ]
    Command: editor.action.indentLines
    What it does:
    Indent current line (if no selection)
    or indent all selected or partially-selected lines.
  • Hotkey: CTRL + [
    Command: editor.action.outdentLines
    What it does:
    "Outdent" (a.k.a "unindent" a.k.a dedent)
    current line (if no selection)
    or outdent all selected or partially-selected lines.

[Footnote 2]

Note: regardless of whether you use this extension or not, you can quickly replace your current document's indentation (to either leading tabs or leading spaces) by using the following VS Code commands:

  • editor.action.indentationToTabs
  • editor.action.indentationToSpaces

Solution 7:[7]

Answer edited as for VSC version 1.56.2 and newer.

The command editor.action.insertLineAfter makes a new line and moves the cursor there preserving the indentation. To bind that command to Enter key, go to your keyboard shortcuts (press ctrl + k ctrl + s) then press the page with the pivot arrow icon on the far right top.

enter image description here

add the following inside keybindings.json to look like so:

// Place your key bindings in this file to override the defaults
[
    {
        "key": "enter",
        "command": "editor.action.insertLineAfter",
        "when": "editorTextFocus && !editorReadonly"
    },
]

It worked for my without re-opening of VSC

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Keith Fox
Solution 2
Solution 3 depassion
Solution 4
Solution 5 Mark
Solution 6
Solution 7 reposit96