1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 23:21:08 +03:00

menubar: re-categorize attach/detach

refs: https://github.com/wez/wezterm/issues/1485
This commit is contained in:
Wez Furlong 2022-12-23 14:55:50 -07:00
parent b12506ea30
commit 1cdf74d19e
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387

View File

@ -230,7 +230,7 @@ impl CommandDef {
doc: "".into(),
keys: vec![],
action: KeyAssignment::AttachDomain(name.to_string()),
menubar: &["Shell"],
menubar: &["Shell", "Attach"],
});
}
}
@ -1408,7 +1408,7 @@ pub fn derive_command_from_key_assignment(action: &KeyAssignment) -> Option<Comm
doc: format!("Attach domain `{name}`").into(),
keys: vec![],
args: &[ArgType::ActivePane],
menubar: &[],
menubar: &["Shell", "Attach"],
},
CopyMode(_) => CommandDef {
brief: "Activate Copy Mode".into(),