use ssh lsp store (#17655)
Release Notes: - ssh remoting: Added support for booting langauge servers (in limited circumstances) --------- Co-authored-by: Mikayla <mikayla@zed.dev>
This commit is contained in:
parent
130f19d8f9
commit
36eb1c15ea
45 changed files with 1553 additions and 671 deletions
|
@ -2251,14 +2251,8 @@ mod tests {
|
|||
assert!(!editor.is_dirty(cx));
|
||||
assert_eq!(editor.title(cx), "the-new-name.rs");
|
||||
assert_eq!(
|
||||
editor
|
||||
.buffer()
|
||||
.read(cx)
|
||||
.language_at(0, cx)
|
||||
.unwrap()
|
||||
.name()
|
||||
.as_ref(),
|
||||
"Rust"
|
||||
editor.buffer().read(cx).language_at(0, cx).unwrap().name(),
|
||||
"Rust".into()
|
||||
);
|
||||
});
|
||||
})
|
||||
|
@ -2374,14 +2368,8 @@ mod tests {
|
|||
editor.update(cx, |editor, cx| {
|
||||
assert!(!editor.is_dirty(cx));
|
||||
assert_eq!(
|
||||
editor
|
||||
.buffer()
|
||||
.read(cx)
|
||||
.language_at(0, cx)
|
||||
.unwrap()
|
||||
.name()
|
||||
.as_ref(),
|
||||
"Rust"
|
||||
editor.buffer().read(cx).language_at(0, cx).unwrap().name(),
|
||||
"Rust".into()
|
||||
)
|
||||
});
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue