
0
Invalid auto-indentation in "if" statement on C-like languages
With the following code on C/C++/JavaScript/C-like languages: (note: _ is the cursor position)
if (a == b || c == d) _
If we press { and then ENTER key, we get:
if (a == b || a == c) { _ }
Which is invalid, we should get:
if (a == b || a == c) { _ }
Customer support service by UserEcho
Replies 3