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?
相关问题
- Extended message for commit via Visual Studio Code
- Where are Automatic Type Acquisition typescript de
- Typescript: Why doesn't visual studio code rep
- How can I add a horizontal line (“goal line”) for
- .NET Core 3.1 CreateHostBuilder Cannot parse JSON
相关文章
- Visual Studio Code, MAC OS X, OmniSharp server is
- Omnisharp in VS Code produces a lot of warnings ab
- Visual Studio Code command for “repeat last comman
- VSCode remove warnings from problems tab
- Configure a TypeScript project with common depende
- Visual Studio Code disabling Normal, Edit and Visu
- Vscode: error TS2307: Cannot find module 'vsco
- How to customize context menu in Visual Studio Cod
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: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.