summaryrefslogtreecommitdiffstats
path: root/zellij-client/src
diff options
context:
space:
mode:
authorraphCode <15750438+raphCode@users.noreply.github.com>2022-11-08 13:33:35 +0100
committerGitHub <noreply@github.com>2022-11-08 13:33:35 +0100
commit0477d93444c1cddd167a6e9479c2574d78528758 (patch)
tree7811ccfeaae227453a8440ece2832a05eb4eeac6 /zellij-client/src
parent453142775c96752730d7caf85532e616e2aaa719 (diff)
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
Diffstat (limited to 'zellij-client/src')
-rw-r--r--zellij-client/src/lib.rs2
1 files changed, 0 insertions, 2 deletions
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();