diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-09-14 19:21:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-14 19:21:09 +0200 |
commit | dadcfe22cab6c4c5e838c0127303bc81638b7283 (patch) | |
tree | f934c57f9587185b59effe605dfedca91a839596 /src/nvim/globals.h | |
parent | c03e8307d2eff687034b71d59c859e5c267661c8 (diff) | |
parent | a6d4a2fb8d319b2639b38039f56f44728f4f8bc2 (diff) | |
download | rneovim-dadcfe22cab6c4c5e838c0127303bc81638b7283.tar.gz rneovim-dadcfe22cab6c4c5e838c0127303bc81638b7283.tar.bz2 rneovim-dadcfe22cab6c4c5e838c0127303bc81638b7283.zip |
Merge #8998 from janlazo/vim-8.0.1275
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 3bb18d2b5f..b2e6233400 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -789,7 +789,7 @@ EXTERN int ex_normal_busy INIT(= 0); // recursiveness of ex_normal() EXTERN int ex_normal_lock INIT(= 0); // forbid use of ex_normal() EXTERN int ignore_script INIT(= false); // ignore script input EXTERN int stop_insert_mode; // for ":stopinsert" and 'insertmode' -EXTERN int KeyTyped; // TRUE if user typed current char +EXTERN bool KeyTyped; // true if user typed current char EXTERN int KeyStuffed; // TRUE if current char from stuffbuf EXTERN int maptick INIT(= 0); // tick for each non-mapped char |