mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 14:38:32 +00:00
refactor/single-include: terminal.h
This commit is contained in:
@@ -543,7 +543,6 @@ set(NO_SINGLE_CHECK_HEADERS
|
|||||||
os/pty_process_win.h
|
os/pty_process_win.h
|
||||||
regexp_defs.h
|
regexp_defs.h
|
||||||
syntax_defs.h
|
syntax_defs.h
|
||||||
terminal.h
|
|
||||||
undo.h
|
undo.h
|
||||||
undo_defs.h
|
undo_defs.h
|
||||||
)
|
)
|
||||||
|
@@ -10,6 +10,8 @@ typedef void (*terminal_write_cb)(char *buffer, size_t size, void *data);
|
|||||||
typedef void (*terminal_resize_cb)(uint16_t width, uint16_t height, void *data);
|
typedef void (*terminal_resize_cb)(uint16_t width, uint16_t height, void *data);
|
||||||
typedef void (*terminal_close_cb)(void *data);
|
typedef void (*terminal_close_cb)(void *data);
|
||||||
|
|
||||||
|
#include "nvim/buffer_defs.h"
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
void *data;
|
void *data;
|
||||||
uint16_t width, height;
|
uint16_t width, height;
|
||||||
|
Reference in New Issue
Block a user