diff options
| author | dundargoc <gocdundar@gmail.com> | 2023-12-12 15:40:21 +0100 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-12-17 19:03:18 +0100 |
| commit | 69bc519b53ebf78fd95c8256468e7d538ebcb948 (patch) | |
| tree | eeff39a8b6478da10c8d6b394617cc273e5e0d34 /src/nvim/tui | |
| parent | c0cb1e8e9437b738c8d3232ec4594113d2221bb2 (diff) | |
| download | rneovim-69bc519b53ebf78fd95c8256468e7d538ebcb948.tar.gz rneovim-69bc519b53ebf78fd95c8256468e7d538ebcb948.tar.bz2 rneovim-69bc519b53ebf78fd95c8256468e7d538ebcb948.zip | |
refactor: move non-symbols to defs.h headers
Diffstat (limited to 'src/nvim/tui')
| -rw-r--r-- | src/nvim/tui/input.c | 1 | ||||
| -rw-r--r-- | src/nvim/tui/tui.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/tui/input.c b/src/nvim/tui/input.c index 6c47d1b5c7..9ba21a6afd 100644 --- a/src/nvim/tui/input.c +++ b/src/nvim/tui/input.c @@ -7,6 +7,7 @@ #include "nvim/api/private/defs.h" #include "nvim/api/private/helpers.h" #include "nvim/event/defs.h" +#include "nvim/event/stream.h" #include "nvim/macros_defs.h" #include "nvim/main.h" #include "nvim/map_defs.h" diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index f084ab212b..496c192b95 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -15,6 +15,7 @@ #include "nvim/api/private/helpers.h" #include "nvim/ascii_defs.h" #include "nvim/cursor_shape.h" +#include "nvim/event/defs.h" #include "nvim/event/loop.h" #include "nvim/event/signal.h" #include "nvim/event/stream.h" |