mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Don't convert codes for special keys (Tab, Enter, Escape).
This commit is contained in:
		@@ -520,7 +520,7 @@ input_key(struct screen *s, struct bufferevent *bev, key_code key)
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
	outkey = (key & KEYC_MASK_KEY);
 | 
						outkey = (key & KEYC_MASK_KEY);
 | 
				
			||||||
	modifiers = (key & KEYC_MASK_MODIFIERS);
 | 
						modifiers = (key & KEYC_MASK_MODIFIERS);
 | 
				
			||||||
	if (outkey < ' ') {
 | 
						if (outkey < 32 && outkey != 9 && outkey != 13 && outkey != 27) {
 | 
				
			||||||
		outkey = 64 + outkey;
 | 
							outkey = 64 + outkey;
 | 
				
			||||||
		modifiers |= KEYC_CTRL;
 | 
							modifiers |= KEYC_CTRL;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user