summaryrefslogtreecommitdiffstats
path: root/zellij-server/src
diff options
context:
space:
mode:
Diffstat (limited to 'zellij-server/src')
-rw-r--r--zellij-server/src/route.rs6
-rw-r--r--zellij-server/src/screen.rs4
2 files changed, 3 insertions, 7 deletions
diff --git a/zellij-server/src/route.rs b/zellij-server/src/route.rs
index cbab1ffac..8c9da6b57 100644
--- a/zellij-server/src/route.rs
+++ b/zellij-server/src/route.rs
@@ -705,11 +705,7 @@ pub(crate) fn route_action(
))
.with_context(err_context)?;
},
- Action::LaunchPlugin(
- run_plugin,
- should_float,
- should_open_in_place,
- ) => {
+ Action::LaunchPlugin(run_plugin, should_float, should_open_in_place) => {
senders
.send_to_screen(ScreenInstruction::LaunchPlugin(
run_plugin,
diff --git a/zellij-server/src/screen.rs b/zellij-server/src/screen.rs
index d89e7eb1d..31613de28 100644
--- a/zellij-server/src/screen.rs
+++ b/zellij-server/src/screen.rs
@@ -295,8 +295,8 @@ pub enum ScreenInstruction {
RequestStateUpdateForPlugins,
LaunchOrFocusPlugin(RunPlugin, bool, bool, bool, Option<PaneId>, ClientId), // bools are: should_float, move_to_focused_tab, should_open_in_place Option<PaneId> is the pane id to replace
LaunchPlugin(RunPlugin, bool, bool, Option<PaneId>, ClientId), // bools are: should_float, should_open_in_place Option<PaneId> is the pane id to replace
- SuppressPane(PaneId, ClientId), // bool is should_float
- FocusPaneWithId(PaneId, bool, ClientId), // bool is should_float
+ SuppressPane(PaneId, ClientId), // bool is should_float
+ FocusPaneWithId(PaneId, bool, ClientId), // bool is should_float
RenamePane(PaneId, Vec<u8>),
RenameTab(usize, Vec<u8>),
RequestPluginPermissions(