diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-10-18 08:38:15 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-10-18 12:51:35 -0300 |
commit | 42112e04a999c0f289939fce3142ef2c2517110a (patch) | |
tree | 5f2a1dd7395461be1bc6df7aa259fa8dd63008d3 /src/nvim/os/input.h | |
parent | 68de5d79a243fecc9ef256d9d0356f8541aa3821 (diff) | |
download | rneovim-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.h | 2 |
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 |