mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Get client_width and client_height the right way round, from Stephen
Thirlwall.
This commit is contained in:
		
							
								
								
									
										4
									
								
								format.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								format.c
									
									
									
									
									
								
							@@ -303,8 +303,8 @@ format_client(struct format_tree *ft, struct client *c)
 | 
			
		||||
	time_t	 t;
 | 
			
		||||
 | 
			
		||||
	format_add(ft, "client_cwd", "%s", c->cwd);
 | 
			
		||||
	format_add(ft, "client_height", "%u", c->tty.sx);
 | 
			
		||||
	format_add(ft, "client_width", "%u", c->tty.sy);
 | 
			
		||||
	format_add(ft, "client_height", "%u", c->tty.sy);
 | 
			
		||||
	format_add(ft, "client_width", "%u", c->tty.sx);
 | 
			
		||||
	format_add(ft, "client_tty", "%s", c->tty.path);
 | 
			
		||||
	format_add(ft, "client_termname", "%s", c->tty.termname);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user