reduce LSP timeout to 3s
This commit is contained in:
parent
759d55cc81
commit
9a406b569b
1 changed files with 1 additions and 1 deletions
|
@ -1323,7 +1323,7 @@ impl Editor {
|
|||
timeout: Option<u64>,
|
||||
) -> Result<(), tokio::time::error::Elapsed> {
|
||||
tokio::time::timeout(
|
||||
Duration::from_millis(timeout.unwrap_or(10000)),
|
||||
Duration::from_millis(timeout.unwrap_or(3000)),
|
||||
future::join_all(
|
||||
self.language_servers
|
||||
.iter_clients()
|
||||
|
|
Loading…
Add table
Reference in a new issue