summaryrefslogtreecommitdiffstats
path: root/zellij-client
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2024-02-23 18:21:59 +0100
committerAram Drevekenin <aram@poor.dev>2024-02-23 18:21:59 +0100
commit779baa1e6762ca640ead0a193365e520ff679515 (patch)
treea95ae61de3c2e34bdaa9c32b63e2aa4b695c6454 /zellij-client
parent0836da7843cc92e21c2b2d3430c5f85f912643d1 (diff)
aliases working from config file and all tests passing
Diffstat (limited to 'zellij-client')
-rw-r--r--zellij-client/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/zellij-client/src/lib.rs b/zellij-client/src/lib.rs
index 640cbcd80..06c2477a8 100644
--- a/zellij-client/src/lib.rs
+++ b/zellij-client/src/lib.rs
@@ -242,7 +242,7 @@ pub fn start_client(
Box::new(opts),
Box::new(config_options.clone()),
Box::new(layout.unwrap()),
- Some(config.plugins.clone()),
+ Box::new(config.plugins.clone()),
),
ipc_pipe,
)