问题
Usually when I use VS Code, very first thing I do on new document is command: "Toggle Word Wrap" or Alt+Z. I tried looking into User Settings, but I didn't find any relevant entries. Is there some way to have text wrapping 'on' for every document by default?
回答1:
The setting is now "editor.wordWrap": "on" which I set to "on" (the default is "off") and that activates word wrap on all my documents in Visual Studio Code.
See the release notes about Word Wrap changes for more info.
回答2:
Have a look at the setting editor.wrappingColumn (see the docs for more information)
Update 2017-04-06:
Recently the setting changed (see here) to editor.wordWrap with several options:
We therefore decided to deprecate
editor.wrappingColumn(with its -1, 0, >0 cases) in favor ofeditor.wordWrap.Here are the new word wrap options:
editor.wordWrap: "off"- Lines will never wrap.editor.wordWrap: "on"- Lines will wrap at viewport width.editor.wordWrap: "wordWrapColumn"- Lines will wrap at the value ofeditor.wordWrapColumn.editor.wordWrap: "bounded"- Lines will wrap at the minimum of viewport width and the value ofeditor.wordWrapColumn.
回答3:
Version 1.32.3
If you don't want to edit any files you can just turn it on under user settings:
Code > Preferences > Settings > Text Editor
Type "wordwrap" in the search or scroll to bottom of the list just before the cursor section. You'll see it as "Word Wrap / Controls how lines should wrap."
回答4:
From the 1.39 version you can find this option on View Menu -> Toggle Word Wrap
来源:https://stackoverflow.com/questions/38561881/how-do-i-turn-on-text-wrapping-by-default-in-vs-code