From 0477d93444c1cddd167a6e9479c2574d78528758 Mon Sep 17 00:00:00 2001 From: raphCode <15750438+raphCode@users.noreply.github.com> Date: Tue, 8 Nov 2022 13:33:35 +0100 Subject: Do not advertise 24 bit color support unchecked (#1900) * Fix bat syntax colors when using mosh Original reason for this line according to Aram: I set this variable as part of the Sixel support to get notcurses to work properly. I tried communicating with the notcurses maintainers about a workaround for this, but to no avail. * Changelog * Improve changelog message * Remove empty function --- zellij-client/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'zellij-client/src') diff --git a/zellij-client/src/lib.rs b/zellij-client/src/lib.rs index bc9355ceb..0fd549ab4 100644 --- a/zellij-client/src/lib.rs +++ b/zellij-client/src/lib.rs @@ -165,13 +165,11 @@ pub fn start_client( let first_msg = match info { ClientInfo::Attach(name, config_options) => { envs::set_session_name(name); - envs::set_initial_environment_vars(); ClientToServerMsg::AttachClient(client_attributes, config_options) }, ClientInfo::New(name) => { envs::set_session_name(name); - envs::set_initial_environment_vars(); spawn_server(&*ZELLIJ_IPC_PIPE, opts.debug).unwrap(); -- cgit v1.2.3