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.
Asked
Active
Viewed 2,059 times
1
-
Any chance this is helpful? https://visualstudio.uservoice.com/forums/293070-visual-studio-code/suggestions/9739698-word-wrap – shawnt00 Jan 04 '16 at 21:39
-
1Possible duplicate of *[How to switch word wrap on and off in VSCode?](https://stackoverflow.com/questions/31025502/how-to-switch-word-wrap-on-and-off-in-vscode)*. – Peter Mortensen Nov 14 '17 at 19:41
2 Answers
6
editor.wrappingColumn
is deprecated now, instead of adding that setting use this:
"editor.wordWrap": "on"

Matthew Verstraete
- 6,335
- 22
- 67
- 123

Chikiliz Zv
- 61
- 1
- 2
2
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,

okaram
- 1,444
- 13
- 11