From df96f0c122d8d0c12bf850cf6d47bd5e4e85b1ab Mon Sep 17 00:00:00 2001
From: Nikita Revenco <154856872+NikitaRevenco@users.noreply.github.com>
Date: Thu, 6 Feb 2025 17:04:18 +0000
Subject: [PATCH] feat: merge-with-commandline `false` by default

---
 helix-view/src/editor.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs
index 201c7934..f9c087ef 100644
--- a/helix-view/src/editor.rs
+++ b/helix-view/src/editor.rs
@@ -504,7 +504,7 @@ impl Default for StatusLineConfig {
             ],
             separator: String::from("│"),
             mode: ModeConfig::default(),
-            merge_with_commandline: true,
+            merge_with_commandline: false,
         }
     }
 }