diff options
author | dundargoc <gocdundar@gmail.com> | 2025-01-03 15:40:46 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2025-01-07 12:35:24 +0100 |
commit | d8bc08db7fd8d0efbf2e9ebf39fecb6f732f84e8 (patch) | |
tree | 3dd3eb1954d36db51a1eab82ea890d18cf085189 /src/nvim/terminal.c | |
parent | 4d9405991963a53ed31089ed456d9f4cfebc325d (diff) | |
download | rneovim-d8bc08db7fd8d0efbf2e9ebf39fecb6f732f84e8.tar.gz rneovim-d8bc08db7fd8d0efbf2e9ebf39fecb6f732f84e8.tar.bz2 rneovim-d8bc08db7fd8d0efbf2e9ebf39fecb6f732f84e8.zip |
refactor: adopt vterm
We have changed too much to consider it a mere bundled dependency (such
as unicode handling in e3bfcf2fd4a4ebf00b104b082cfe83c8144a842d), and
can consider it our own at this point.
Diffstat (limited to 'src/nvim/terminal.c')
-rw-r--r-- | src/nvim/terminal.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c index 0743eda374..d7ed709906 100644 --- a/src/nvim/terminal.c +++ b/src/nvim/terminal.c @@ -93,9 +93,15 @@ #include "nvim/types_defs.h" #include "nvim/ui.h" #include "nvim/vim_defs.h" +#include "nvim/vterm/keyboard.h" +#include "nvim/vterm/mouse.h" +#include "nvim/vterm/parser.h" +#include "nvim/vterm/pen.h" +#include "nvim/vterm/screen.h" +#include "nvim/vterm/state.h" +#include "nvim/vterm/vterm.h" +#include "nvim/vterm/vterm_keycodes_defs.h" #include "nvim/window.h" -#include "vterm/vterm.h" -#include "vterm/vterm_keycodes.h" typedef struct { VimState state; |