diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-11-27 12:54:26 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-11-27 14:12:59 -0300 |
commit | 541eaf598c25e0b853ef441b57c9f7d1bbf3450c (patch) | |
tree | 62919511c5968a76b8add898b812aeaf2edc02a5 /src/nvim/globals.h | |
parent | f6c89ec70409badb7ca477de47dd1f8dbf3de376 (diff) | |
download | rneovim-541eaf598c25e0b853ef441b57c9f7d1bbf3450c.tar.gz rneovim-541eaf598c25e0b853ef441b57c9f7d1bbf3450c.tar.bz2 rneovim-541eaf598c25e0b853ef441b57c9f7d1bbf3450c.zip |
ui: Remove ui_inchar/ui_char_avail
Also:
- Remove NO_CONSOLE_INPUT/NO_CONSULE preprocessor conditionals
- Remove ctrl_c_interrupts variable, check for mapped_ctrl_c directly in
process_interrupts()
- Move ui_inchar profiling to input_poll which is where Nvim blocks for input.
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index cd9f7a648f..2d8e511ade 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -855,7 +855,6 @@ EXTERN char_u *exe_name; /* the name of the executable */ EXTERN int dont_scroll INIT(= FALSE); /* don't use scrollbars when TRUE */ #endif EXTERN int mapped_ctrl_c INIT(= FALSE); /* CTRL-C is mapped */ -EXTERN bool ctrl_c_interrupts INIT(= true); /* CTRL-C sets got_int */ EXTERN cmdmod_T cmdmod; /* Ex command modifiers */ |