From 2487256664d4142ee1906f0058cf7e8063cb6e10 Mon Sep 17 00:00:00 2001 From: Kunal Mohan Date: Wed, 19 May 2021 21:17:21 +0530 Subject: Mark current session in the output of list-sessions --- zellij-client/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'zellij-client/src') diff --git a/zellij-client/src/lib.rs b/zellij-client/src/lib.rs index 4ff377063..8f192c388 100644 --- a/zellij-client/src/lib.rs +++ b/zellij-client/src/lib.rs @@ -17,7 +17,7 @@ use crate::{ use zellij_utils::cli::CliArgs; use zellij_utils::{ channels::{SenderType, SenderWithContext, SyncChannelWithContext}, - consts::ZELLIJ_IPC_PIPE, + consts::{SESSION_NAME, ZELLIJ_IPC_PIPE}, errors::{ClientContext, ContextType, ErrorInstruction}, input::config::Config, input::options::Options, @@ -95,6 +95,7 @@ pub fn start_client(mut os_input: Box, opts: CliArgs, config: C .write(clear_client_terminal_attributes.as_bytes()) .unwrap(); std::env::set_var(&"ZELLIJ", "0"); + std::env::set_var(&"ZELLIJ_SESSION_NAME", &*SESSION_NAME); #[cfg(not(any(feature = "test", test)))] spawn_server(&*ZELLIJ_IPC_PIPE).unwrap(); -- cgit v1.2.3