Fix lsp config deserialization case
It should have been in kebab-case, but it was the default snake_case.
This commit is contained in:
parent
9cbf564d08
commit
14f61fb6ac
1 changed files with 1 additions and 0 deletions
|
@ -13,6 +13,7 @@ pub struct Config {
|
|||
}
|
||||
|
||||
#[derive(Default, Serialize, Deserialize)]
|
||||
#[serde(rename_all = "kebab-case")]
|
||||
pub struct LspConfig {
|
||||
pub display_messages: bool,
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue