-
Notifications
You must be signed in to change notification settings - Fork 677
New issue
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
Missing auto indenting inside of switch blocks #156
Open
mattscheffer opened this issue
Apr 6, 2016
· 6 comments
· May be fixed by DUMIE505/omnisharp-vscode#5, hixio-mh/omnisharp-vscode#7, dumie505-github-com/omnisharp-vscode#5 or madidiot2021/omnisharp-vscode#2
Open
Missing auto indenting inside of switch blocks #156
mattscheffer opened this issue
Apr 6, 2016
· 6 comments
· May be fixed by DUMIE505/omnisharp-vscode#5, hixio-mh/omnisharp-vscode#7, dumie505-github-com/omnisharp-vscode#5 or madidiot2021/omnisharp-vscode#2
Labels
Comments
Sorry about the large code pictures. Appears they greatly expand when the pictures are pasted on a Mac |
@akshita31 Can you see if this still repros? |
Yes it does reproduce. Will look into this. |
@akshita31 Did we fix this? |
Not yet. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
VSCode Version: 0.10.11
OS Version: OSX, Win10
Scenario 1:
Create a switch statement:
Create a new line above default:
Inside that line type case 0:
Hit enter
Expected (normal VS product behavior): The editor should auto indent after hitting enter
Actual: No indent occurs. See below
Scenario 2:
Create a switch statement. Use the same as how scenario 1 started.
Move the cursor to after the 'break;' Hit enter.
Cursor will be at the same Ch spot as the b in break.
Type case 0:
Expected (normal VS product behavior): The editor should auto un-indent case 0: after typing the colon
Actual: No indent occurs. Looks like the following:
The text was updated successfully, but these errors were encountered: