mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-21 17:06:18 +04:00
ensure :toggle soft-wrap.enable works by default (#6742)
This commit is contained in:
parent
bff7fc8695
commit
5ec41195a0
@ -749,7 +749,10 @@ fn default() -> Self {
|
||||
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(),
|
||||
|
Loading…
Reference in New Issue
Block a user