Skip to content
This repository was archived by the owner on Mar 25, 2021. It is now read-only.

Restore old behaviour of text wrap in vscode #2298

Merged
merged 1 commit into from
Mar 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
// Controls if the editor will insert spaces for tabs. If set to auto, the value will be guessed based on the opened file.
"editor.insertSpaces": true,

// Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping
"editor.wordWrap": "bounded",
// Controls after how many characters the editor will wrap to the next line.
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 140,
"editor.wrappingIndent": "none",

// The folders to exclude when doing a full text search in the workspace.
"files.exclude": {
Expand Down