Skip to content

Commit

Permalink
fix(plugins): session layouts are still serialized using the legacy p…
Browse files Browse the repository at this point in the history
…lugin syntax (remote:) (#3224)

* fix(plugins): session layouts were still serialized using the legacy plugin syntax (remote:)

* use example domain

* style(fmt): rustfmt

---------

Co-authored-by: Aram Drevekenin <[email protected]>
  • Loading branch information
noirbizarre and imsnif authored Mar 27, 2024
1 parent fc1026d commit a54a7ea
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zellij-utils/src/input/layout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ impl RunPluginLocation {
match self {
RunPluginLocation::File(pathbuf) => format!("file:{}", pathbuf.display()),
RunPluginLocation::Zellij(plugin_tag) => format!("zellij:{}", plugin_tag),
RunPluginLocation::Remote(url) => format!("remote:{}", url),
RunPluginLocation::Remote(url) => String::from(url),
}
}
}
Expand All @@ -584,7 +584,7 @@ impl From<&RunPluginLocation> for Url {
path.clone().into_os_string().into_string().unwrap()
),
RunPluginLocation::Zellij(tag) => format!("zellij:{}", tag),
RunPluginLocation::Remote(url) => format!("remote:{}", url),
RunPluginLocation::Remote(url) => String::from(url),
};
Self::parse(&url).unwrap()
}
Expand Down
14 changes: 14 additions & 0 deletions zellij-utils/src/input/unit/layout_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2085,6 +2085,9 @@ fn run_plugin_location_parsing() {
pane {
plugin location="filepicker"
}
pane {
plugin location="https://example.com/plugin.wasm"
}
}
"#;
let layout = Layout::from_kdl(kdl_layout, "layout_file_name".into(), None, None).unwrap();
Expand Down Expand Up @@ -2162,6 +2165,17 @@ fn run_plugin_location_parsing() {
}))),
..Default::default()
},
TiledPaneLayout {
run: Some(Run::Plugin(RunPluginOrAlias::RunPlugin(RunPlugin {
_allow_exec_host_cmd: false,
location: RunPluginLocation::Remote(String::from(
"https://example.com/plugin.wasm",
)),
configuration: Default::default(),
..Default::default()
}))),
..Default::default()
},
],
..Default::default()
},
Expand Down

0 comments on commit a54a7ea

Please sign in to comment.