Reputation: 1876
Is there a way to enable Word Wrap in Visual Studio Code Version 0.10.6? I have tried to find the option in settings but have had no success.
Upvotes: 1
Views: 2093
Reputation: 61
editor.wrappingColumn
is deprecated now, instead of adding that setting use this:
"editor.wordWrap": "on"
Upvotes: 6
Reputation: 1552
The option is "editor.wrappingColumn", and you need to set it to 0 for wrapping.
So, go to File / Preferences / User settings and edit the settings.json file, adding the following line: "editor.wrappingColumn": 0,
Upvotes: 2