mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Add a way to mark environment variables as "hidden" so they can be used
by tmux but are not passed into the environment of new panes.
This commit is contained in:
		@@ -71,7 +71,7 @@ cmd_respawn_pane_exec(struct cmd *self, struct cmdq_item *item)
 | 
			
		||||
 | 
			
		||||
	add = args_first_value(args, 'e', &value);
 | 
			
		||||
	while (add != NULL) {
 | 
			
		||||
		environ_put(sc.environ, add);
 | 
			
		||||
		environ_put(sc.environ, add, 0);
 | 
			
		||||
		add = args_next_value(&value);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user