Change to use ConPTY, if available

This commit is contained in:
erw7
2019-11-09 15:46:12 +09:00
committed by Björn Linse
parent 8fe0635e73
commit 5355cee77d
10 changed files with 376 additions and 54 deletions

View File

@@ -46,6 +46,9 @@
#include "nvim/option.h"
#include "nvim/os_unix.h"
#include "nvim/os/os_defs.h"
#ifdef WIN32
# include "nvim/os/os_win_conpty.h"
#endif
#include "nvim/path.h"
#include "nvim/profile.h"
#include "nvim/popupmnu.h"
@@ -226,6 +229,9 @@ void early_init(void)
init_signs();
ui_comp_syn_init();
#ifdef WIN32
os_dyn_conpty_init();
#endif
}
#ifdef MAKE_LIB