1
0
forked from aniani/vim

patch 8.0.0952: has('terminal') does not check existence of dll file

Problem:    MS-Windows: has('terminal') does not check existence of dll file.
Solution:   Check if the winpty dll file can be loaded. (Ken Takata)
This commit is contained in:
Bram Moolenaar
2017-08-17 14:39:07 +02:00
parent 84ed4ad084
commit a83e3962ac
4 changed files with 31 additions and 11 deletions

View File

@@ -34,4 +34,5 @@ void f_term_scrape(typval_T *argvars, typval_T *rettv);
void f_term_sendkeys(typval_T *argvars, typval_T *rettv);
void f_term_start(typval_T *argvars, typval_T *rettv);
void f_term_wait(typval_T *argvars, typval_T *rettv);
int terminal_enabled(void);
/* vim: set ft=c : */