Skip to content

Commit

Permalink
ensure :toggle soft-wrap.enable works by default (helix-editor#6742)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalkuthe authored and wes-adams committed Jul 3, 2023
1 parent 626dd76 commit 69635fa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion helix-view/src/editor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,10 @@ impl Default for Config {
bufferline: BufferLine::default(),
indent_guides: IndentGuidesConfig::default(),
color_modes: false,
soft_wrap: SoftWrap::default(),
soft_wrap: SoftWrap {
enable: Some(false),
..SoftWrap::default()
},
text_width: 80,
completion_replace: false,
workspace_lsp_roots: Vec::new(),
Expand Down

0 comments on commit 69635fa

Please sign in to comment.