mirror of
https://github.com/neovim/neovim.git
synced 2026-01-30 00:52:52 +10:00
24 lines
421 B
C
24 lines
421 B
C
#ifndef NVIM_TUI_INPUT_H
|
|
#define NVIM_TUI_INPUT_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <termkey.h>
|
|
#include "nvim/event/stream.h"
|
|
#include "nvim/event/time.h"
|
|
|
|
typedef struct term_input {
|
|
int in_fd;
|
|
bool paste_enabled;
|
|
TermKey *tk;
|
|
TimeWatcher timer_handle;
|
|
Loop *loop;
|
|
Stream read_stream;
|
|
} TermInput;
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "tui/input.h.generated.h"
|
|
#endif
|
|
|
|
#endif // NVIM_TUI_INPUT_H
|