Mercurial > vim
annotate src/proto/if_python.pro @ 12144:abd69cea3459 v8.0.0952
patch 8.0.0952: has('terminal') does not check existence of dll file
commit https://github.com/vim/vim/commit/a83e3962ac0e4bbfef15a072ad9a7390fc255409
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Aug 17 14:39:07 2017 +0200
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)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 17 Aug 2017 14:45:04 +0200 |
parents | 21b0a39d13ed |
children |
rev | line source |
---|---|
7 | 1 /* if_python.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6565
diff
changeset
|
2 int python_enabled(int verbose); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6565
diff
changeset
|
3 void python_end(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6565
diff
changeset
|
4 int python_loaded(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6565
diff
changeset
|
5 void ex_python(exarg_T *eap); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6565
diff
changeset
|
6 void ex_pyfile(exarg_T *eap); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6565
diff
changeset
|
7 void ex_pydo(exarg_T *eap); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6565
diff
changeset
|
8 void python_buffer_free(buf_T *buf); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6565
diff
changeset
|
9 void python_window_free(win_T *win); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6565
diff
changeset
|
10 void python_tabpage_free(tabpage_T *tab); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6565
diff
changeset
|
11 void do_pyeval(char_u *str, typval_T *rettv); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6565
diff
changeset
|
12 int set_ref_in_python(int copyID); |
7 | 13 /* vim: set ft=c : */ |