Calem
Calem

Reputation: 51

VS Code line break or wrap

When I write code in Visual Studio Code, and the line gets long, It doesn't break. It goes past the edge of the screen and that is rather annoying. What I want is for the line to break and then go on below, I believe this is called wrap or breaking I'm not sure. I use a split screen on my computer so only one half is my code editor and the other half is my project so I can see as I update it. Any help?

Upvotes: 5

Views: 13360

Answers (2)

Yuriy Yakym
Yuriy Yakym

Reputation: 3931

Command

Ctrl+Shift+P to open command palette and type wrap there.

Windows

Alt+Z

Mac

⌥+Z

Upvotes: 8

EcksDy
EcksDy

Reputation: 1664

There's a setting for that called editor.wordWrap.

You can search the settings for "wrap" and set some additional customization to how you want VSCode to behave when wrapping text.

Upvotes: 1

Related Questions