From 14f61fb6ac3cd167d7c52a3eaf172bb64553dfb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20CORTIER?= Date: Wed, 23 Jun 2021 16:33:28 -0400 Subject: [PATCH] Fix lsp config deserialization case It should have been in kebab-case, but it was the default snake_case. --- helix-term/src/config.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/helix-term/src/config.rs b/helix-term/src/config.rs index 839235f13..47d544e57 100644 --- a/helix-term/src/config.rs +++ b/helix-term/src/config.rs @@ -13,6 +13,7 @@ pub struct Config { } #[derive(Default, Serialize, Deserialize)] +#[serde(rename_all = "kebab-case")] pub struct LspConfig { pub display_messages: bool, }