mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 05:28:33 +00:00
keymap, terminal: more keycodes #9810
- input: recognize <kEqual>, <kComma> - terminal.c: If we need to support function key, a change must be made in libvtermkey. Currently, it emulates strictly VT220 terminal, and returning numeric value in 'normal' mode is the expected behaviour. closes #9810
This commit is contained in:

committed by
Justin M. Keyes

parent
f793c578bc
commit
d13803f64f
@@ -1431,6 +1431,8 @@ int vgetc(void)
|
||||
case K_KMULTIPLY: c = '*'; break;
|
||||
case K_KENTER: c = CAR; break;
|
||||
case K_KPOINT: c = '.'; break;
|
||||
case K_KCOMMA: c = ','; break;
|
||||
case K_KEQUAL: c = '='; break;
|
||||
case K_K0: c = '0'; break;
|
||||
case K_K1: c = '1'; break;
|
||||
case K_K2: c = '2'; break;
|
||||
|
Reference in New Issue
Block a user