Anshad Vattapoyil
Anshad Vattapoyil

Reputation: 23463

VSCode auto format without line wrap

Is there any extension or settings in VSCode where I can apply auto format but the line should not break to multi line.

Tried prettier but it breaks my conditions, statements or the function headers into multi lines.

enter image description here

Upvotes: 8

Views: 8333

Answers (1)

Minhaj Javed
Minhaj Javed

Reputation: 981

this is late but may be it helps someone else. All you have to do is go to

-> settings -> search "wrap"

-> Word Wrap -> mark this "off"

-> Word Wrap Column -> give this any number greater then 80(which is default)

-> Wrapping Intend -> Make this "none"

-> Debug > Console: Word Wrap -> Uncheck it

-> HTML > Format: Wrap Line Length -> Change it to "0"

-> Edit "Settings.json" file and add following at end:

"[markdown]": {
  
    "editor.wordWrap": "off",
    "editor.quickSuggestions": true
}, 

-> Restart VS Code and now line wrapping issue is fixed

Upvotes: 16

Related Questions