aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/state.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-08-05 03:34:38 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-08-05 21:32:34 +0200
commita31482db4dcaa479b09e2683037fee3d6ee56408 (patch)
treec47a6572dba872e5fe053b9883e37aa9c59adcf9 /src/nvim/state.c
parentc6954437277175c9e2b8eb7e7e753314725aef8b (diff)
downloadrneovim-a31482db4dcaa479b09e2683037fee3d6ee56408.tar.gz
rneovim-a31482db4dcaa479b09e2683037fee3d6ee56408.tar.bz2
rneovim-a31482db4dcaa479b09e2683037fee3d6ee56408.zip
terminal: block redraw during c_CTRL-D
Unlike the normal wildmenu, the CTRL-D wild-list is not restored by statusline redraw. (Semantics: ^D is controlled by 'wildoptions' option, so it's in the "wild..." family.) TODO: externalize the c_CTRL-D wild-list.
Diffstat (limited to 'src/nvim/state.c')
-rw-r--r--src/nvim/state.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/state.c b/src/nvim/state.c
index be6aa21664..eb0b590a9b 100644
--- a/src/nvim/state.c
+++ b/src/nvim/state.c
@@ -6,6 +6,7 @@
#include "nvim/lib/kvec.h"
#include "nvim/ascii.h"
+#include "nvim/log.h"
#include "nvim/state.h"
#include "nvim/vim.h"
#include "nvim/main.h"