mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 09:26:05 +00:00 
			
		
		
		
	It would help if I read my own comments... make alt keys work again by sending
alt AND the key not alt instead of it.
This commit is contained in:
		@@ -173,9 +173,8 @@ input_key(struct window_pane *wp, int key)
 | 
			
		||||
	 */
 | 
			
		||||
	if (key != KEYC_NONE && (key & ~KEYC_ESCAPE) < 0x100) {
 | 
			
		||||
		if (key & KEYC_ESCAPE)
 | 
			
		||||
			ch = '\033';
 | 
			
		||||
		else
 | 
			
		||||
			ch = key & ~KEYC_ESCAPE;
 | 
			
		||||
			bufferevent_write(wp->event, "\033", 1);
 | 
			
		||||
		ch = key & ~KEYC_ESCAPE;
 | 
			
		||||
		bufferevent_write(wp->event, &ch, 1);
 | 
			
		||||
		return;
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user