You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have now a new setting, editor.indentSize. This allows, when indenting with spaces (editor.insertSpaces: true) to disassociate the tab character (\t) render width (tabSize) from the number of spaces that make up an indent (indentSize). Please check that:
by default, the indentSize setting has the value "tabSize" (by default there is no change in behavior).
when detecting indentation, indentSize is always detected to be equal to tabSize (unchanged from before).
configure: editor.detectIndentation: false, editor.insertSpaces: true, editor.tabSize: 8, editor.indentSize: 2 and verify this makes the code "line up".
it is also possible to change the settings from the status bar. First, make sure the text buffer is configured to indent with spaces. Then, click on Spaces:N and choose Change Tab Display Size. This allows you to configure different values for tabSize compared to indentSize.
The text was updated successfully, but these errors were encountered:
Refs #10339 #135058
Complexity: 3
Create Issue
We have now a new setting,
editor.indentSize
. This allows, when indenting with spaces (editor.insertSpaces: true
) to disassociate the tab character (\t
) render width (tabSize
) from the number of spaces that make up an indent (indentSize
). Please check that:indentSize
setting has the value"tabSize"
(by default there is no change in behavior).indentSize
is always detected to be equal totabSize
(unchanged from before).editor.detectIndentation: false
,editor.insertSpaces: true
,editor.tabSize: 8
,editor.indentSize: 2
and verify this makes the code "line up".Spaces:N
and choose Change Tab Display Size. This allows you to configure different values fortabSize
compared toindentSize
.The text was updated successfully, but these errors were encountered: