Allow restarting remote language servers (#12652)

Release Notes:

- Added the ability to restart the remote language servers when
collaborating
This commit is contained in:
Conrad Irwin 2024-06-04 14:09:01 -06:00 committed by GitHub
parent 1a0708f28c
commit 1c617474fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 53 additions and 5 deletions

View file

@ -91,6 +91,10 @@ impl BufferId {
self.0 = self.0.saturating_add(1);
old
}
pub fn to_proto(self) -> u64 {
self.into()
}
}
impl From<BufferId> for u64 {
fn from(id: BufferId) -> Self {