summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2022-04-28 17:26:44 +0200
committerGitHub <noreply@github.com>2022-04-28 17:26:44 +0200
commit0dc136ec5f99f01fc12eaed1e18060d16f62b560 (patch)
tree399c32e7829d02464c75bc5f535a6d668555e0e2 /src
parent188febfc0591e99d1577d3032076eac9ca9a7e33 (diff)
fix(compatibility): respond to bg and fg color ansi queries (#1358)
* fix(compatibility): respond to background/foreground queries * style(fmt): rustfmt * style(clippy): make clippy happy * style(fmt): rustfmt * style(fmt): remove unused code
Diffstat (limited to 'src')
-rw-r--r--src/tests/e2e/remote_runner.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tests/e2e/remote_runner.rs b/src/tests/e2e/remote_runner.rs
index 5a3faaff7..05f4bf2aa 100644
--- a/src/tests/e2e/remote_runner.rs
+++ b/src/tests/e2e/remote_runner.rs
@@ -4,6 +4,7 @@ use std::sync::{Arc, Mutex};
use zellij_server::panes::{LinkHandler, TerminalPane};
use zellij_utils::pane_size::{Dimension, PaneGeom, Size};
use zellij_utils::vte;
+use zellij_utils::zellij_tile::data::Palette;
use zellij_utils::zellij_tile::prelude::Style;
use ssh2::Session;
@@ -162,6 +163,7 @@ fn read_from_channel(
String::new(),
Rc::new(RefCell::new(LinkHandler::new())),
Rc::new(RefCell::new(None)),
+ Rc::new(RefCell::new(Palette::default())),
); // 0 is the pane index
loop {
if !should_keep_running.load(Ordering::SeqCst) {