We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From @j-h-a on October 20, 2016 15:58
VS Code keeps changing some lines to have spaces instead of tabs in the leading whitespace.
Use these settings: "editor.tabSize": 4, "editor.insertSpaces": false, "editor.detectIndentation": false, "editor.formatOnType": true,
Type some code that triggers formatOnType to activate a format change.
Line is formatted using tabs for leading whitespace, because of the insertSpaces setting.
Line is formatted with spaces instead of tabs for the leading whitespace.
Copied from original issue: microsoft/vscode#14108
The text was updated successfully, but these errors were encountered:
From @roblourens on October 20, 2016 18:25
Is this in an html file? Could be #13563
Sorry, something went wrong.
From @j-h-a on October 20, 2016 18:28
No, this is while editing C#
From @roblourens on October 20, 2016 18:35
Related @aeschli?
Any word on status of this issue? I still cant' seem to find a solution.
@shawnwildermuth here is a PR #1055
filipw
Successfully merging a pull request may close this issue.
From @j-h-a on October 20, 2016 15:58
1.6.1
OSX (10.11.6)
Searchable description
VS Code keeps changing some lines to have spaces instead of tabs in the leading whitespace.
Steps to Reproduce:
Use these settings:
"editor.tabSize": 4,
"editor.insertSpaces": false,
"editor.detectIndentation": false,
"editor.formatOnType": true,
Type some code that triggers formatOnType to activate a format change.
Expected behaviour:
Line is formatted using tabs for leading whitespace, because of the insertSpaces setting.
Actual behaviour:
Line is formatted with spaces instead of tabs for the leading whitespace.
Copied from original issue: microsoft/vscode#14108
The text was updated successfully, but these errors were encountered: