Fix lsp config deserialization case

It should have been in kebab-case, but it was the default snake_case.
pull/345/head
Benoît CORTIER 3 years ago committed by Blaž Hrastnik
parent 9cbf564d08
commit 14f61fb6ac

@ -13,6 +13,7 @@ pub struct Config {
}
#[derive(Default, Serialize, Deserialize)]
#[serde(rename_all = "kebab-case")]
pub struct LspConfig {
pub display_messages: bool,
}

Loading…
Cancel
Save