Mercurial > vim
annotate src/proto/if_python.pro @ 6102:3d206df5c828 v7.4.389
updated for version 7.4.389
Problem: Still sometimes Vim enters Replace mode when starting up.
Solution: Use a different solution in detecting the termresponse and
location response. (Hayaki Saito)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 30 Jul 2014 17:21:58 +0200 |
parents | f063be86b632 |
children | 38add5a3d617 |
rev | line source |
---|---|
7 | 1 /* if_python.c */ |
1125 | 2 int python_enabled __ARGS((int verbose)); |
3 void python_end __ARGS((void)); | |
2384
aeea25941392
Temporary solution for crashing when using both :py and :py3: disallow both in
Bram Moolenaar <bram@vim.org>
parents:
1125
diff
changeset
|
4 int python_loaded __ARGS((void)); |
1125 | 5 void ex_python __ARGS((exarg_T *eap)); |
5112
f063be86b632
updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents:
4435
diff
changeset
|
6 void ex_pyfile __ARGS((exarg_T *eap)); |
4435 | 7 void ex_pydo __ARGS((exarg_T *eap)); |
1125 | 8 void python_buffer_free __ARGS((buf_T *buf)); |
9 void python_window_free __ARGS((win_T *win)); | |
4401 | 10 void python_tabpage_free __ARGS((tabpage_T *tab)); |
3618 | 11 void do_pyeval __ARGS((char_u *str, typval_T *rettv)); |
12 void set_ref_in_python __ARGS((int copyID)); | |
7 | 13 /* vim: set ft=c : */ |