Topic starter 13/07/2021 11:29 am
How can I switch word-wrap ON and OFF in Visual Studio Code?
13/07/2021 3:15 pm
Since v1.0 you can toggle word wrap:
- with the new command editor.action.toggleWordWrap, or
- from the View menu (*View** → Toggle Word Wrap), or
- using the ALT+Z keyboard shortcut (for Mac: ⌥+Z).
It can also be controlled with the following settings:
- editor.wordWrap
- editor.wordWrapColumn
- editor.wrappingIndent
Neha liked