mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 20:07:44 +03:00
configurable lsp request timeout (#2405)
This commit is contained in:
parent
247ab25bc0
commit
807cdc60bf
3 changed files with 13 additions and 2 deletions
|
@ -50,6 +50,10 @@ where
|
|||
Ok(Option::<AutoPairConfig>::deserialize(deserializer)?.and_then(AutoPairConfig::into))
|
||||
}
|
||||
|
||||
fn default_timeout() -> u64 {
|
||||
20
|
||||
}
|
||||
|
||||
#[derive(Debug, Serialize, Deserialize)]
|
||||
pub struct Configuration {
|
||||
pub language: Vec<LanguageConfiguration>,
|
||||
|
@ -116,6 +120,8 @@ pub struct LanguageServerConfiguration {
|
|||
#[serde(default)]
|
||||
#[serde(skip_serializing_if = "Vec::is_empty")]
|
||||
pub args: Vec<String>,
|
||||
#[serde(default = "default_timeout")]
|
||||
pub timeout: u64,
|
||||
pub language_id: Option<String>,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue