aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/input.h
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-10-18 08:38:15 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-10-18 12:51:35 -0300
commit42112e04a999c0f289939fce3142ef2c2517110a (patch)
tree5f2a1dd7395461be1bc6df7aa259fa8dd63008d3 /src/nvim/os/input.h
parent68de5d79a243fecc9ef256d9d0356f8541aa3821 (diff)
downloadrneovim-42112e04a999c0f289939fce3142ef2c2517110a.tar.gz
rneovim-42112e04a999c0f289939fce3142ef2c2517110a.tar.bz2
rneovim-42112e04a999c0f289939fce3142ef2c2517110a.zip
ui: Refactor input buffer handling
All input buffer code was moved to os/input.c, and `inbuf` is now a `RBuffer` instance(which abstracts static buffer manipulation).
Diffstat (limited to 'src/nvim/os/input.h')
-rw-r--r--src/nvim/os/input.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/os/input.h b/src/nvim/os/input.h
index 7543950b4f..5902677a35 100644
--- a/src/nvim/os/input.h
+++ b/src/nvim/os/input.h
@@ -4,6 +4,8 @@
#include <stdint.h>
#include <stdbool.h>
+#include "nvim/api/private/defs.h"
+
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "os/input.h.generated.h"
#endif