fix(plugins): use the terminal title when spawning terminals (#4272)
* fix(plugins): use the terminal title when spawning terminals * docs(changelog): add PR * fix: plugin tests
This commit is contained in:
parent
2580564d50
commit
2b9884645d
40 changed files with 83 additions and 32 deletions
|
|
@ -12,6 +12,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|||
* feat: add plugin API to replace a pane with another existing pane (https://github.com/zellij-org/zellij/pull/4246)
|
||||
* feat: add "stack" keybinding and CLI action to add a stacked pane to the current pane (https://github.com/zellij-org/zellij/pull/4255)
|
||||
* fix: support multiline hyperlinks (https://github.com/zellij-org/zellij/pull/4264)
|
||||
* fix: use terminal title when spawning terminal panes from plugin (https://github.com/zellij-org/zellij/pull/4272)
|
||||
|
||||
## [0.42.2] - 2025-04-15
|
||||
* refactor(terminal): track scroll_region as tuple rather than Option (https://github.com/zellij-org/zellij/pull/4082)
|
||||
|
|
|
|||
|
|
@ -369,6 +369,7 @@ impl SessionMetaData {
|
|||
TerminalAction::RunCommand(RunCommand {
|
||||
command: shell.clone(),
|
||||
cwd: new_config.options.default_cwd.clone(),
|
||||
use_terminal_title: true,
|
||||
..Default::default()
|
||||
})
|
||||
});
|
||||
|
|
@ -705,6 +706,7 @@ pub fn start_server(mut os_input: Box<dyn ServerOsApi>, socket_path: PathBuf) {
|
|||
TerminalAction::RunCommand(RunCommand {
|
||||
command: shell,
|
||||
cwd: config.options.default_cwd.clone(),
|
||||
use_terminal_title: true,
|
||||
..Default::default()
|
||||
})
|
||||
});
|
||||
|
|
@ -1481,6 +1483,7 @@ fn init_session(
|
|||
let default_shell = config_options.default_shell.clone().map(|command| {
|
||||
TerminalAction::RunCommand(RunCommand {
|
||||
command,
|
||||
use_terminal_title: true,
|
||||
..Default::default()
|
||||
})
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-server/src/plugins/./unit/plugin_tests.rs
|
||||
assertion_line: 8246
|
||||
expression: "format!(\"{:#?}\", screen_instruction)"
|
||||
---
|
||||
Some(
|
||||
|
|
@ -22,6 +21,7 @@ Some(
|
|||
hold_on_close: false,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: true,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ Some(
|
|||
context: {},
|
||||
},
|
||||
),
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ Some(
|
|||
context: {},
|
||||
},
|
||||
),
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ Some(
|
|||
context: {},
|
||||
},
|
||||
),
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ Some(
|
|||
hold_on_close: false,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: true,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ Some(
|
|||
hold_on_close: false,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: true,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -816,6 +816,7 @@ fn open_terminal(env: &PluginEnv, cwd: PathBuf) {
|
|||
let mut default_shell = env.default_shell.clone().unwrap_or_else(|| {
|
||||
TerminalAction::RunCommand(RunCommand {
|
||||
command: env.path_to_default_shell.clone(),
|
||||
use_terminal_title: true,
|
||||
..Default::default()
|
||||
})
|
||||
});
|
||||
|
|
@ -833,6 +834,7 @@ fn open_terminal_near_plugin(env: &PluginEnv, cwd: PathBuf) {
|
|||
let mut default_shell = env.default_shell.clone().unwrap_or_else(|| {
|
||||
TerminalAction::RunCommand(RunCommand {
|
||||
command: env.path_to_default_shell.clone(),
|
||||
use_terminal_title: true,
|
||||
..Default::default()
|
||||
})
|
||||
});
|
||||
|
|
@ -857,6 +859,7 @@ fn open_terminal_floating(
|
|||
let mut default_shell = env.default_shell.clone().unwrap_or_else(|| {
|
||||
TerminalAction::RunCommand(RunCommand {
|
||||
command: env.path_to_default_shell.clone(),
|
||||
use_terminal_title: true,
|
||||
..Default::default()
|
||||
})
|
||||
});
|
||||
|
|
@ -878,6 +881,7 @@ fn open_terminal_floating_near_plugin(
|
|||
let mut default_shell = env.default_shell.clone().unwrap_or_else(|| {
|
||||
TerminalAction::RunCommand(RunCommand {
|
||||
command: env.path_to_default_shell.clone(),
|
||||
use_terminal_title: true,
|
||||
..Default::default()
|
||||
})
|
||||
});
|
||||
|
|
@ -898,6 +902,7 @@ fn open_terminal_in_place(env: &PluginEnv, cwd: PathBuf) {
|
|||
let mut default_shell = env.default_shell.clone().unwrap_or_else(|| {
|
||||
TerminalAction::RunCommand(RunCommand {
|
||||
command: env.path_to_default_shell.clone(),
|
||||
use_terminal_title: true,
|
||||
..Default::default()
|
||||
})
|
||||
});
|
||||
|
|
@ -919,6 +924,7 @@ fn open_terminal_in_place_of_plugin(
|
|||
let mut default_shell = env.default_shell.clone().unwrap_or_else(|| {
|
||||
TerminalAction::RunCommand(RunCommand {
|
||||
command: env.path_to_default_shell.clone(),
|
||||
use_terminal_title: true,
|
||||
..Default::default()
|
||||
})
|
||||
});
|
||||
|
|
@ -947,6 +953,7 @@ fn open_command_pane_in_place_of_plugin(
|
|||
let hold_on_close = true;
|
||||
let hold_on_start = false;
|
||||
let name = None;
|
||||
let use_terminal_title = false; // TODO: support this
|
||||
let run_command_action = RunCommandAction {
|
||||
command,
|
||||
args,
|
||||
|
|
@ -959,6 +966,7 @@ fn open_command_pane_in_place_of_plugin(
|
|||
env.client_id,
|
||||
context,
|
||||
)),
|
||||
use_terminal_title,
|
||||
};
|
||||
let run_cmd = TerminalAction::RunCommand(run_command_action.into());
|
||||
let _ = env
|
||||
|
|
@ -984,6 +992,7 @@ fn open_command_pane(
|
|||
let hold_on_close = true;
|
||||
let hold_on_start = false;
|
||||
let name = None;
|
||||
let use_terminal_title = false; // TODO: support this
|
||||
let run_command_action = RunCommandAction {
|
||||
command,
|
||||
args,
|
||||
|
|
@ -996,6 +1005,7 @@ fn open_command_pane(
|
|||
env.client_id,
|
||||
context,
|
||||
)),
|
||||
use_terminal_title,
|
||||
};
|
||||
let action = Action::NewTiledPane(direction, Some(run_command_action), name);
|
||||
apply_action!(action, error_msg, env);
|
||||
|
|
@ -1013,6 +1023,7 @@ fn open_command_pane_near_plugin(
|
|||
let hold_on_close = true;
|
||||
let hold_on_start = false;
|
||||
let name = None;
|
||||
let use_terminal_title = false; // TODO: support this
|
||||
let run_command_action = RunCommandAction {
|
||||
command,
|
||||
args,
|
||||
|
|
@ -1025,6 +1036,7 @@ fn open_command_pane_near_plugin(
|
|||
env.client_id,
|
||||
context,
|
||||
)),
|
||||
use_terminal_title,
|
||||
};
|
||||
let run_cmd = TerminalAction::RunCommand(run_command_action.into());
|
||||
let _ = env.senders.send_to_pty(PtyInstruction::SpawnTerminal(
|
||||
|
|
@ -1050,6 +1062,7 @@ fn open_command_pane_floating(
|
|||
let hold_on_close = true;
|
||||
let hold_on_start = false;
|
||||
let name = None;
|
||||
let use_terminal_title = false; // TODO: support this
|
||||
let run_command_action = RunCommandAction {
|
||||
command,
|
||||
args,
|
||||
|
|
@ -1062,6 +1075,7 @@ fn open_command_pane_floating(
|
|||
env.client_id,
|
||||
context,
|
||||
)),
|
||||
use_terminal_title,
|
||||
};
|
||||
let action = Action::NewFloatingPane(Some(run_command_action), name, floating_pane_coordinates);
|
||||
apply_action!(action, error_msg, env);
|
||||
|
|
@ -1080,6 +1094,7 @@ fn open_command_pane_floating_near_plugin(
|
|||
let hold_on_close = true;
|
||||
let hold_on_start = false;
|
||||
let name = None;
|
||||
let use_terminal_title = false; // TODO: support this
|
||||
let run_command_action = RunCommandAction {
|
||||
command,
|
||||
args,
|
||||
|
|
@ -1092,6 +1107,7 @@ fn open_command_pane_floating_near_plugin(
|
|||
env.client_id,
|
||||
context,
|
||||
)),
|
||||
use_terminal_title,
|
||||
};
|
||||
let run_cmd = TerminalAction::RunCommand(run_command_action.into());
|
||||
let _ = env.senders.send_to_pty(PtyInstruction::SpawnTerminal(
|
||||
|
|
@ -1116,6 +1132,7 @@ fn open_command_pane_in_place(
|
|||
let hold_on_close = true;
|
||||
let hold_on_start = false;
|
||||
let name = None;
|
||||
let use_terminal_title = false; // TODO: support this
|
||||
let run_command_action = RunCommandAction {
|
||||
command,
|
||||
args,
|
||||
|
|
@ -1128,6 +1145,7 @@ fn open_command_pane_in_place(
|
|||
env.client_id,
|
||||
context,
|
||||
)),
|
||||
use_terminal_title,
|
||||
};
|
||||
let action = Action::NewInPlacePane(Some(run_command_action), name);
|
||||
apply_action!(action, error_msg, env);
|
||||
|
|
@ -1149,6 +1167,7 @@ fn open_command_pane_background(
|
|||
let hold_on_start = false;
|
||||
let start_suppressed = true;
|
||||
let name = None;
|
||||
let use_terminal_title = false; // TODO: support this
|
||||
let run_command_action = RunCommandAction {
|
||||
command,
|
||||
args,
|
||||
|
|
@ -1161,6 +1180,7 @@ fn open_command_pane_background(
|
|||
env.client_id,
|
||||
context,
|
||||
)),
|
||||
use_terminal_title,
|
||||
};
|
||||
let run_cmd = TerminalAction::RunCommand(run_command_action.into());
|
||||
let _ = env.senders.send_to_pty(PtyInstruction::SpawnTerminal(
|
||||
|
|
@ -2113,6 +2133,7 @@ fn break_panes_to_new_tab(
|
|||
let default_shell = env.default_shell.clone().or_else(|| {
|
||||
Some(TerminalAction::RunCommand(RunCommand {
|
||||
command: env.path_to_default_shell.clone(),
|
||||
use_terminal_title: true,
|
||||
..Default::default()
|
||||
}))
|
||||
});
|
||||
|
|
|
|||
|
|
@ -233,7 +233,11 @@ pub(crate) fn pty_thread_main(mut pty: Pty, layout: Box<Layout>) -> Result<()> {
|
|||
Some(TerminalAction::RunCommand(run_command)) => (
|
||||
run_command.hold_on_close,
|
||||
Some(run_command.clone()),
|
||||
Some(name.unwrap_or_else(|| run_command.to_string())),
|
||||
if run_command.use_terminal_title {
|
||||
None
|
||||
} else {
|
||||
Some(name.unwrap_or_else(|| run_command.to_string()))
|
||||
},
|
||||
None,
|
||||
),
|
||||
Some(TerminalAction::OpenFile(open_file_payload)) => {
|
||||
|
|
@ -359,7 +363,11 @@ pub(crate) fn pty_thread_main(mut pty: Pty, layout: Box<Layout>) -> Result<()> {
|
|||
Some(TerminalAction::RunCommand(run_command)) => (
|
||||
run_command.hold_on_close,
|
||||
Some(run_command.clone()),
|
||||
Some(name.unwrap_or_else(|| run_command.to_string())),
|
||||
if run_command.use_terminal_title {
|
||||
None
|
||||
} else {
|
||||
Some(name.unwrap_or_else(|| run_command.to_string()))
|
||||
},
|
||||
),
|
||||
_ => (false, None, name),
|
||||
};
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@
|
|||
source: zellij-server/src/./unit/screen_tests.rs
|
||||
expression: "format!(\"{:?}\", new_pane_instruction)"
|
||||
---
|
||||
Some(SpawnTerminal(Some(RunCommand(RunCommand { command: "htop", args: [], cwd: Some("/some/folder"), hold_on_close: true, hold_on_start: false, originating_plugin: None })), None, Tiled(Some(Right)), false, ClientId(10)))
|
||||
Some(SpawnTerminal(Some(RunCommand(RunCommand { command: "htop", args: [], cwd: Some("/some/folder"), hold_on_close: true, hold_on_start: false, originating_plugin: None, use_terminal_title: false })), None, Tiled(Some(Right)), false, ClientId(10)))
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@
|
|||
source: zellij-server/src/./unit/screen_tests.rs
|
||||
expression: "format!(\"{:?}\", *received_pty_instructions.lock().unwrap())"
|
||||
---
|
||||
[UpdateActivePane(Some(Terminal(0)), 1), UpdateActivePane(Some(Terminal(0)), 1), SpawnTerminal(Some(RunCommand(RunCommand { command: "htop", args: [], cwd: Some("/some/folder"), hold_on_close: true, hold_on_start: false, originating_plugin: None })), None, Floating(Some(FloatingPaneCoordinates { x: Some(Fixed(10)), y: None, width: Some(Percent(20)), height: None, pinned: None })), false, ClientId(10)), Exit]
|
||||
[UpdateActivePane(Some(Terminal(0)), 1), UpdateActivePane(Some(Terminal(0)), 1), SpawnTerminal(Some(RunCommand(RunCommand { command: "htop", args: [], cwd: Some("/some/folder"), hold_on_close: true, hold_on_start: false, originating_plugin: None, use_terminal_title: false })), None, Floating(Some(FloatingPaneCoordinates { x: Some(Fixed(10)), y: None, width: Some(Percent(20)), height: None, pinned: None })), false, ClientId(10)), Exit]
|
||||
|
|
|
|||
|
|
@ -59,6 +59,8 @@ pub struct RunCommand {
|
|||
pub hold_on_start: bool,
|
||||
#[serde(default)]
|
||||
pub originating_plugin: Option<OriginatingPlugin>,
|
||||
#[serde(default)]
|
||||
pub use_terminal_title: bool,
|
||||
}
|
||||
|
||||
impl std::fmt::Display for RunCommand {
|
||||
|
|
@ -94,6 +96,8 @@ pub struct RunCommandAction {
|
|||
pub hold_on_start: bool,
|
||||
#[serde(default)]
|
||||
pub originating_plugin: Option<OriginatingPlugin>,
|
||||
#[serde(default)]
|
||||
pub use_terminal_title: bool,
|
||||
}
|
||||
|
||||
impl From<RunCommandAction> for RunCommand {
|
||||
|
|
@ -105,6 +109,7 @@ impl From<RunCommandAction> for RunCommand {
|
|||
hold_on_close: action.hold_on_close,
|
||||
hold_on_start: action.hold_on_start,
|
||||
originating_plugin: action.originating_plugin,
|
||||
use_terminal_title: action.use_terminal_title,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -119,6 +124,7 @@ impl From<RunCommand> for RunCommandAction {
|
|||
hold_on_close: run_command.hold_on_close,
|
||||
hold_on_start: run_command.hold_on_start,
|
||||
originating_plugin: run_command.originating_plugin,
|
||||
use_terminal_title: run_command.use_terminal_title,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1410
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -26,6 +25,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
@ -56,6 +56,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1375
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -29,6 +28,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
@ -59,6 +59,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1427
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -26,6 +25,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
@ -53,6 +53,7 @@ Layout {
|
|||
hold_on_close: false,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1393
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -26,6 +25,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
@ -53,6 +53,7 @@ Layout {
|
|||
hold_on_close: false,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1462
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -26,6 +25,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
@ -55,6 +55,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1445
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -28,6 +27,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
@ -57,6 +57,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 2230
|
||||
expression: "format!(\"{layout:#?}\")"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -108,6 +107,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
@ -185,6 +185,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1847
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -47,6 +46,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1868
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -51,6 +50,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1887
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -47,6 +46,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1732
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -48,6 +47,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1765
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -48,6 +47,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1786
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -48,6 +47,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1745
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -48,6 +47,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1802
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -47,6 +46,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 511
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -26,6 +25,7 @@ Layout {
|
|||
hold_on_close: false,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 524
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -26,6 +25,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: true,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 892
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -49,6 +48,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1616
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -28,6 +27,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1562
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -28,6 +27,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1579
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -28,6 +27,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1597
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -28,6 +27,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1634
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -28,6 +27,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1686
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -28,6 +27,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1668
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -28,6 +27,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1817
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -47,6 +46,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
source: zellij-utils/src/input/./unit/layout_test.rs
|
||||
assertion_line: 1832
|
||||
expression: "format!(\"{:#?}\", layout)"
|
||||
---
|
||||
Layout {
|
||||
|
|
@ -47,6 +46,7 @@ Layout {
|
|||
hold_on_close: true,
|
||||
hold_on_start: false,
|
||||
originating_plugin: None,
|
||||
use_terminal_title: false,
|
||||
},
|
||||
),
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue