Files
neovim/src/nvim/tui/input.h
2015-09-06 09:18:53 -03:00

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