Add a specific server id to a Copilot LSP

This commit is contained in:
Kirill Bulatov 2023-09-19 12:32:02 +03:00
parent 91fac2aa76
commit 5b0b2fe50b
3 changed files with 26 additions and 12 deletions

View file

@ -1018,6 +1018,10 @@ impl LanguageRegistry {
.log_err();
})
}
pub fn next_language_server_id(&self) -> LanguageServerId {
self.state.write().next_language_server_id()
}
}
impl LanguageRegistryState {