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 /src/nvim/main.c | |
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 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index aa7f93c15e..48feeea669 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -551,7 +551,7 @@ int main(int argc, char **argv) RedrawingDisabled = 0; redraw_all_later(NOT_VALID); - no_wait_return = FALSE; + no_wait_return = false; // 'autochdir' has been postponed. do_autochdir(); |