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
VS Code is my primary way of writing C++ programs apart from VS, but the text editing still needs a little improvement.
The Alt + Up/Down feature.
I seem to remember that the shortcut could automatically adjust the number of tabs before the lines of code selected to fit wherever they are placed in previous versions (before the icon is changed to blue). But now, the number of tabs will not adjust. Could you please fix that because I use the shortcut frequently and sometimes the problem annoys me.
Automatic indentation incorrect with ':'
In class definitions and switch statements, the colon is used. But the indentation is kinda not right. If a line of code ends with ':' (for instance, "private:" or "case xxx:"), the number of indentations of the line of code should be decreased by 1. Take an example:
// What it should look like:switch (foo)
{
case1:
// do somethingbreak;
case2:
// ...break;
// ....
}
// What it's like in VS Code without manual formatting:switch (foo)
{
case1:
// do somethingbreak;
case2:
// ...break;
// ....
}
That's all. I hope the problems can be solved in future updates. The problems are not huge bugs but solving them make coding all the more convenient. Thanks.
VS Code is my primary way of writing C++ programs apart from VS, but the text editing still needs a little improvement.
The Alt + Up/Down feature.
I seem to remember that the shortcut could automatically adjust the number of tabs before the lines of code selected to fit wherever they are placed in previous versions (before the icon is changed to blue). But now, the number of tabs will not adjust. Could you please fix that because I use the shortcut frequently and sometimes the problem annoys me.
Automatic indentation incorrect with ':'
In class definitions and switch statements, the colon is used. But the indentation is kinda not right. If a line of code ends with ':' (for instance, "private:" or "case xxx:"), the number of indentations of the line of code should be decreased by 1. Take an example:
That's all. I hope the problems can be solved in future updates. The problems are not huge bugs but solving them make coding all the more convenient. Thanks.
My problem is similar to this one.
The text was updated successfully, but these errors were encountered: