SSH Remoting: Fix yes/no/fingerprint prompt (#19526)
Release Notes: - SSH Remoting: fix SSH fingerprint prompt Co-authored-by: Mikayla <mikayla@zed.dev>
This commit is contained in:
parent
1a4b253ee5
commit
9bae93cd39
7 changed files with 111 additions and 58 deletions
|
@ -119,6 +119,10 @@ impl Markdown {
|
|||
this
|
||||
}
|
||||
|
||||
pub fn source(&self) -> &str {
|
||||
&self.source
|
||||
}
|
||||
|
||||
pub fn append(&mut self, text: &str, cx: &ViewContext<Self>) {
|
||||
self.source.push_str(text);
|
||||
self.parse(cx);
|
||||
|
@ -137,10 +141,6 @@ impl Markdown {
|
|||
self.parse(cx);
|
||||
}
|
||||
|
||||
pub fn source(&self) -> &str {
|
||||
&self.source
|
||||
}
|
||||
|
||||
pub fn parsed_markdown(&self) -> &ParsedMarkdown {
|
||||
&self.parsed_markdown
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue