summaryrefslogtreecommitdiffstats
path: root/zellij-server
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2024-02-08 16:50:41 +0100
committerAram Drevekenin <aram@poor.dev>2024-02-08 16:50:41 +0100
commit4a8225b5f201e5f41c1eddd1c50e3ef8f7148eec (patch)
tree805ded9e78a35e9cd1ae91594358c8888a53abe2 /zellij-server
parentfa6477e63f5fe136415e6815a546b1a5cd46a1e6 (diff)
style(code): cleanupsfloating_pane_coordinates
Diffstat (limited to 'zellij-server')
-rw-r--r--zellij-server/src/plugins/zellij_exports.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/zellij-server/src/plugins/zellij_exports.rs b/zellij-server/src/plugins/zellij_exports.rs
index 277c35e02..19bac2822 100644
--- a/zellij-server/src/plugins/zellij_exports.rs
+++ b/zellij-server/src/plugins/zellij_exports.rs
@@ -534,8 +534,7 @@ fn open_terminal_floating(
TerminalAction::RunCommand(run_command) => Some(run_command.into()),
_ => None,
};
- let action = Action::NewFloatingPane(run_command_action, None, floating_pane_coordinates); // TODO: support
- // coordinates
+ let action = Action::NewFloatingPane(run_command_action, None, floating_pane_coordinates);
apply_action!(action, error_msg, env);
}