We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
R code in base R uses a tab display size of 8.
However, we also want pressing the tab key to mean indentation (with 4 spaces per indent), not tab character (8 spaces).
So the settings.json file should have:
settings.json
"editor.tabSize": 8, "editor.indentSize": 4 "editor.detectIndentation": false,
We need to set editor.detectIndentation to false to get tabSize/indentSize to work, see microsoft/vscode#155450 (comment).
editor.detectIndentation
The VS Code settings for the container are defined in .devcontainer/devcontainer.json.
.devcontainer/devcontainer.json
The text was updated successfully, but these errors were encountered:
Fix r-devel#219: Configure VS Code tabSize=8 and indentSize=4
85a344f
avinab-neogy
No branches or pull requests
R code in base R uses a tab display size of 8.
However, we also want pressing the tab key to mean indentation (with 4 spaces per indent), not tab character (8 spaces).
So the
settings.json
file should have:We need to set
editor.detectIndentation
to false to get tabSize/indentSize to work, see microsoft/vscode#155450 (comment).The VS Code settings for the container are defined in
.devcontainer/devcontainer.json
.The text was updated successfully, but these errors were encountered: