From 31a508cf6c8e66d73a6ce09da60195fc99a45fd6 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sun, 30 Dec 2018 14:04:16 +0100 Subject: refactor: Extract os_tty_guess_term() - Also remove feature-detection of uv_set_vterm_state(): instead, on Windows we always require libuv to have that function. --- src/nvim/os/tty.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/nvim/os/tty.h (limited to 'src/nvim/os/tty.h') diff --git a/src/nvim/os/tty.h b/src/nvim/os/tty.h new file mode 100644 index 0000000000..d771e63768 --- /dev/null +++ b/src/nvim/os/tty.h @@ -0,0 +1,7 @@ +#ifndef NVIM_OS_TTY_H +#define NVIM_OS_TTY_H + +#ifdef INCLUDE_GENERATED_DECLARATIONS +# include "os/tty.h.generated.h" +#endif +#endif // NVIM_OS_TTY_H -- cgit