Mercurial > vim
annotate src/proto/if_python.pro @ 6838:0229cfffc560 v7.4.740
patch 7.4.740
Problem: ":1quit" works like ":.quit". (Bohr Shaw)
Solution: Don't exit Vim when a range is specified. (Christian Brabandt)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Fri, 19 Jun 2015 12:43:07 +0200 |
parents | 38add5a3d617 |
children | 21b0a39d13ed |
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)); |
6565 | 12 int set_ref_in_python __ARGS((int copyID)); |
7 | 13 /* vim: set ft=c : */ |