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

Commit

Permalink
Restore old behaviour of text wrap in vscode (#2298)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajafff authored and nchen63 committed Mar 6, 2017
1 parent d40a89a commit 40a389a
Showing 1 changed file with 3 additions and 2 deletions.
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

0 comments on commit 40a389a

Please sign in to comment.