Reputation: 8833
When using VSCode indentation on HTML file, tags closing brackets end up at the next line:
How can I fix this issue? I have searched for HTML indentation extension, with no success. Tnx
Upvotes: 2
Views: 5035
Reputation: 431
Go to Settings -> search Word Wrap
"editor.wordWrap": "off"
May it help you.
Upvotes: 2
Reputation: 180855
It looks as if you may have:
"html.format.wrapAttributes": "force-expand-multiline"
Try "auto
" or another of its options.
Or perhaps you have an extension that does the same as "force-expand-multiline"
.
Upvotes: 0