summaryrefslogtreecommitdiffstats
path: root/zellij-server/src/tab
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2024-02-19 16:26:59 +0100
committerAram Drevekenin <aram@poor.dev>2024-02-19 16:26:59 +0100
commit8183fe1f1cef448aecc57a1024d63d24b89c0763 (patch)
tree5ac40f8b4fb8932dd0c59ba80373fe1ac126db82 /zellij-server/src/tab
parent7699efead491a8b52f62d12a021e9ee47f85a5dc (diff)
new tests and passing plugin tests as well
Diffstat (limited to 'zellij-server/src/tab')
-rw-r--r--zellij-server/src/tab/layout_applier.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/zellij-server/src/tab/layout_applier.rs b/zellij-server/src/tab/layout_applier.rs
index 34a71b22e..4f5246d33 100644
--- a/zellij-server/src/tab/layout_applier.rs
+++ b/zellij-server/src/tab/layout_applier.rs
@@ -269,11 +269,13 @@ impl<'a> LayoutApplier<'a> {
// if let Some(run_plugin) = layout.run.as_ref().and_then(|r| r.get_run_plugin()) {
if let Some(Run::Plugin(run)) = layout.run.clone() {
let pane_title = run.location_string();
+ eprintln!("new_plugin_ids: {:#?}, \nrun: {:#?}", new_plugin_ids, run);
let pid = new_plugin_ids
// .get_mut(&(run_plugin.location, run_plugin.configuration))
.get_mut(&run)
.and_then(|ids| ids.pop())
.with_context(err_context)?;
+ eprintln!("not here!");
let mut new_plugin = PluginPane::new(
pid,
*position_and_size,