Skip to content

Commit

Permalink
Make prefer_line the default soft-wrap behavior. (#11542)
Browse files Browse the repository at this point in the history
Stops lines from clipping at 1024 by default, returning it to the old
default behaviour where it wraps at 512. The `none` mode is only
supposed to be used for git hunks. See
#11518 (comment).

Release Notes:

- N/A
  • Loading branch information
someone13574 committed May 8, 2024
1 parent 63a5f46 commit 47c12c6
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions assets/settings/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -370,11 +370,13 @@
//
// 1. Do not soft wrap.
// "soft_wrap": "none",
// 2. Soft wrap lines that overflow the editor:
// 2. Prefer a single line generally, unless an overly long line is encountered.
// "soft_wrap": "prefer_line",
// 3. Soft wrap lines that overflow the editor:
// "soft_wrap": "editor_width",
// 3. Soft wrap lines at the preferred line length
// 4. Soft wrap lines at the preferred line length
// "soft_wrap": "preferred_line_length",
"soft_wrap": "none",
"soft_wrap": "prefer_line",
// The column at which to soft-wrap lines, for buffers where soft-wrap
// is enabled.
"preferred_line_length": 80,
Expand Down Expand Up @@ -598,7 +600,12 @@
"format_on_save": "off"
},
"Elixir": {
"language_servers": ["elixir-ls", "!next-ls", "!lexical", "..."]
"language_servers": [
"elixir-ls",
"!next-ls",
"!lexical",
"..."
]
},
"Gleam": {
"tab_size": 2
Expand All @@ -609,7 +616,12 @@
}
},
"HEEX": {
"language_servers": ["elixir-ls", "!next-ls", "!lexical", "..."]
"language_servers": [
"elixir-ls",
"!next-ls",
"!lexical",
"..."
]
},
"Make": {
"hard_tabs": true
Expand Down

0 comments on commit 47c12c6

Please sign in to comment.