Rework file picker for SSH modal (#19020)
This PR changes the SSH modal design so its more keyboard navigation-friendly and adds the server nickname feature. Release Notes: - N/A --------- Co-authored-by: Danilo <danilo@zed.dev> Co-authored-by: Danilo Leal <67129314+danilo-leal@users.noreply.github.com>
This commit is contained in:
parent
be7b24fcf7
commit
db7417f3b5
12 changed files with 871 additions and 491 deletions
|
@ -4905,6 +4905,12 @@ impl From<(&'static str, usize)> for ElementId {
|
|||
}
|
||||
}
|
||||
|
||||
impl From<(SharedString, usize)> for ElementId {
|
||||
fn from((name, id): (SharedString, usize)) -> Self {
|
||||
ElementId::NamedInteger(name, id)
|
||||
}
|
||||
}
|
||||
|
||||
impl From<(&'static str, u64)> for ElementId {
|
||||
fn from((name, id): (&'static str, u64)) -> Self {
|
||||
ElementId::NamedInteger(name.into(), id as usize)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue