mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Add an option to set the pane border lines style from a choice of single
lines (ACS or UTF-8), double or heavy (UTF-8), simple (plain ASCII) or number (the pane numbers). Lines that won't work on a non-UTF-8 terminal are translated back into ACS when they are output.
This commit is contained in:
		@@ -600,7 +600,8 @@ format_draw(struct screen_write_ctx *octx, const struct grid_cell *base,
 | 
			
		||||
 | 
			
		||||
		/* If this style pushed or popped the default, update it. */
 | 
			
		||||
		if (sy.default_type == STYLE_DEFAULT_PUSH) {
 | 
			
		||||
			memcpy(¤t_default, &saved_sy.gc, sizeof current_default);
 | 
			
		||||
			memcpy(¤t_default, &saved_sy.gc,
 | 
			
		||||
			    sizeof current_default);
 | 
			
		||||
			sy.default_type = STYLE_DEFAULT_BASE;
 | 
			
		||||
		} else if (sy.default_type == STYLE_DEFAULT_POP) {
 | 
			
		||||
			memcpy(¤t_default, base, sizeof current_default);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user