diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index f60613562..52f723c24 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -335,7 +335,12 @@ pub struct StickyContextConfig { impl Default for StickyContextConfig { fn default() -> Self { - StickyContextConfig { enable: false, indicator: false, max_lines: 10, follow_cursor: false } + StickyContextConfig { + enable: false, + indicator: false, + max_lines: 10, + follow_cursor: false, + } } }