From 9857b516dc262aae0a54c51feab5c711201849bb Mon Sep 17 00:00:00 2001 From: Daniel <101683475+Koranir@users.noreply.github.com> Date: Mon, 18 Dec 2023 22:54:29 +1100 Subject: [PATCH] Update editor.rs --- helix-view/src/editor.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 5c0e49174..49b7c3936 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -377,9 +377,9 @@ impl Default for VimInlayConfig { fn default() -> Self { Self { enable: false, - type_inlay_prefix: String::from(" => "), - parameter_inlay_prefix: String::from(" <= "), - other_inlay_prefix: String::from(" == "), + type_inlay_prefix: String::from(" -> "), + parameter_inlay_prefix: String::from(" <- "), + other_inlay_prefix: String::from(" - "), } } }