summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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
}
}