diff options
author | Olivier G-R <olivier@fractalwire.io> | 2019-03-29 13:09:54 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-03-31 23:39:06 +0200 |
commit | d13803f64fc5607c6319087240e35a8b86082f64 (patch) | |
tree | 3e8e546c1e2cfd6934557e0093e8b0ec827b461f /runtime/doc/intro.txt | |
parent | f793c578bc409be65b755c35d347b8c60f777eed (diff) | |
download | rneovim-d13803f64fc5607c6319087240e35a8b86082f64.tar.gz rneovim-d13803f64fc5607c6319087240e35a8b86082f64.tar.bz2 rneovim-d13803f64fc5607c6319087240e35a8b86082f64.zip |
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
Diffstat (limited to 'runtime/doc/intro.txt')
-rw-r--r-- | runtime/doc/intro.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/doc/intro.txt b/runtime/doc/intro.txt index 86a6136d32..1d2cca3073 100644 --- a/runtime/doc/intro.txt +++ b/runtime/doc/intro.txt @@ -373,8 +373,10 @@ notation meaning equivalent decimal value(s) ~ <kMinus> keypad - *keypad-minus* <kMultiply> keypad * *keypad-multiply* <kDivide> keypad / *keypad-divide* +<kPoint> keypad . *keypad-point* +<kComma> keypad , *keypad-comma* +<kEqual> keypad = *keypad-equal* <kEnter> keypad Enter *keypad-enter* -<kPoint> keypad Decimal point *keypad-point* <k0> - <k9> keypad 0 to 9 *keypad-0* *keypad-9* <S-...> shift-key *shift* *<S-* <C-...> control-key *control* *ctrl* *<C-* |