summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2024-04-10 17:00:04 +0200
committerGitHub <noreply@github.com>2024-04-10 17:00:04 +0200
commit57676f161f3e3f35f8a1b61bd1f5fcc644b478d5 (patch)
treef21f52b9364f4d2db4ec68e80025099a89a74536
parent2b6d4ad8e5d7afb70d62ef0fd883364b076e4bf8 (diff)
fix(swap-layouts): properly identify plugin aliases with initial cwd (#3250)
* fix(swap-layouts): properly identify plugin aliases with initial cwd * style(fmt): rustfmt
-rw-r--r--zellij-utils/src/input/layout.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/zellij-utils/src/input/layout.rs b/zellij-utils/src/input/layout.rs
index cef7cebf3..f51ddd92c 100644
--- a/zellij-utils/src/input/layout.rs
+++ b/zellij-utils/src/input/layout.rs
@@ -435,9 +435,7 @@ pub struct PluginAlias {
impl PartialEq for PluginAlias {
fn eq(&self, other: &Self) -> bool {
- self.name == other.name
- && self.configuration == other.configuration
- && self.initial_cwd == other.initial_cwd
+ self.name == other.name && self.configuration == other.configuration
}
}