Reorder id generation for Clients to stay close to the old behavior
This commit is contained in:
parent
56748509bd
commit
dcb07673f8
1 changed files with 1 additions and 1 deletions
|
@ -665,8 +665,8 @@ impl Registry {
|
|||
.language_server_configs()
|
||||
.get(&name)
|
||||
.ok_or_else(|| anyhow::anyhow!("Language server '{name}' not defined"))?;
|
||||
self.counter += 1;
|
||||
let id = self.counter;
|
||||
self.counter += 1;
|
||||
let NewClient(client, incoming) = start_client(
|
||||
id,
|
||||
name,
|
||||
|
|
Loading…
Add table
Reference in a new issue