mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Check cursor options when a pane is created, not just when they are changed.
This commit is contained in:
		
							
								
								
									
										15
									
								
								window.c
									
									
									
									
									
								
							
							
						
						
									
										15
									
								
								window.c
									
									
									
									
									
								
							@@ -933,6 +933,7 @@ window_pane_create(struct window *w, u_int sx, u_int sy, u_int hlimit)
 | 
			
		||||
 | 
			
		||||
	screen_init(&wp->base, sx, sy, hlimit);
 | 
			
		||||
	wp->screen = &wp->base;
 | 
			
		||||
	window_pane_default_cursor(wp);
 | 
			
		||||
 | 
			
		||||
	screen_init(&wp->status_screen, 1, 1, 0);
 | 
			
		||||
 | 
			
		||||
@@ -1608,3 +1609,17 @@ window_set_fill_character(struct window *w)
 | 
			
		||||
			w->fill_character = ud;
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void
 | 
			
		||||
window_pane_default_cursor(struct window_pane *wp)
 | 
			
		||||
{
 | 
			
		||||
	struct screen	*s = wp->screen;
 | 
			
		||||
	int		 c;
 | 
			
		||||
 | 
			
		||||
	c = options_get_number(wp->options, "cursor-colour");
 | 
			
		||||
	s->default_ccolour = c;
 | 
			
		||||
 | 
			
		||||
	c = options_get_number(wp->options, "cursor-style");
 | 
			
		||||
	s->default_mode = 0;
 | 
			
		||||
	screen_set_cursor_style(c, &s->default_cstyle, &s->default_mode);
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user