Convert split views to tab groups

This commit is contained in:
2026-05-08 07:41:26 -04:00
parent 2b8d9051df
commit 499bcc1e5a
6 changed files with 183 additions and 6 deletions
@@ -104,6 +104,13 @@ pub(crate) fn tab_group_name(command: &str) -> Option<&str> {
command_argument(command, &["group-tab ", "group tab ", "tab-group ", "tab group "])
}
pub(crate) fn split_group_name(command: &str) -> Option<&str> {
command_argument(
command,
&["group-split-view ", "group split view ", "split-view-to-group ", "split view to group "],
)
}
pub(crate) fn new_profile_name(command: &str) -> Option<&str> {
command_argument(command, &["new-profile ", "new profile "])
}