Fix lsp config deserialization case

It should have been in kebab-case, but it was the default snake_case.
This commit is contained in:
Benoît CORTIER 2021-06-23 16:33:28 -04:00 committed by Blaž Hrastnik
parent 9cbf564d08
commit 14f61fb6ac

View File

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