mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-03 16:46:18 +00:00 
			
		
		
		
	Do not reset cursor to default if it has never been changed, fixes
problem reported by naddy.
This commit is contained in:
		
							
								
								
									
										10
									
								
								tty.c
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								tty.c
									
									
									
									
									
								
							@@ -692,10 +692,12 @@ tty_update_cursor(struct tty *tty, int mode, int changed, struct screen *s)
 | 
			
		||||
	tty_putcode(tty, TTYC_CNORM);
 | 
			
		||||
	switch (cstyle) {
 | 
			
		||||
	case SCREEN_CURSOR_DEFAULT:
 | 
			
		||||
		if (tty_term_has(tty->term, TTYC_SE))
 | 
			
		||||
			tty_putcode(tty, TTYC_SE);
 | 
			
		||||
		else
 | 
			
		||||
			tty_putcode1(tty, TTYC_SS, 0);
 | 
			
		||||
		if (tty->cstyle != SCREEN_CURSOR_DEFAULT) {
 | 
			
		||||
			if (tty_term_has(tty->term, TTYC_SE))
 | 
			
		||||
				tty_putcode(tty, TTYC_SE);
 | 
			
		||||
			else
 | 
			
		||||
				tty_putcode1(tty, TTYC_SS, 0);
 | 
			
		||||
		}
 | 
			
		||||
		if (mode & (MODE_CURSOR_BLINKING|MODE_CURSOR_VERY_VISIBLE))
 | 
			
		||||
			tty_putcode(tty, TTYC_CVVIS);
 | 
			
		||||
		break;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user