summaryrefslogtreecommitdiffstats
path: root/zellij-server/src/pty.rs
diff options
context:
space:
mode:
Diffstat (limited to 'zellij-server/src/pty.rs')
-rw-r--r--zellij-server/src/pty.rs9
1 files changed, 4 insertions, 5 deletions
diff --git a/zellij-server/src/pty.rs b/zellij-server/src/pty.rs
index 209970530..cc219f372 100644
--- a/zellij-server/src/pty.rs
+++ b/zellij-server/src/pty.rs
@@ -18,10 +18,7 @@ use zellij_utils::{
errors::{ContextType, PtyContext},
input::{
command::{RunCommand, TerminalAction},
- layout::{
- FloatingPaneLayout, Layout, PluginUserConfiguration, Run, RunPluginLocation,
- RunPluginOrAlias, TiledPaneLayout,
- },
+ layout::{FloatingPaneLayout, Layout, Run, RunPluginOrAlias, TiledPaneLayout},
},
pane_size::Size,
session_serialization,
@@ -1344,7 +1341,9 @@ impl Pty {
size: Size,
skip_cache: bool,
cwd: Option<PathBuf>,
- floating_pane_coordinates: Option<FloatingPaneCoordinates>,
+ // left here for historical and potential future reasons since we might change the ordering
+ // of the pipeline between threads and end up needing to forward this
+ _floating_pane_coordinates: Option<FloatingPaneCoordinates>,
) -> Result<()> {
let cwd = cwd.or_else(|| {
self.active_panes