Mercurial > vim
annotate src/proto/if_python3.pro @ 7096:00b9f0c048db v7.4.860
commit https://github.com/vim/vim/commit/a122b5e98afe18c9cfdab31b77d2a9fbb8e36416
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Sep 8 19:13:51 2015 +0200
patch 7.4.860
Problem: Filetype detection is outdated.
Solution: Include all recent and not-so-recent changes.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 08 Sep 2015 19:15:04 +0200 |
parents | 38add5a3d617 |
children | 21b0a39d13ed |
rev | line source |
---|---|
2340
99c1eba60b2d
Make automatic prototype generation work with more interfaces.
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
1 /* if_python3.c */ |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
2 int python3_enabled __ARGS((int verbose)); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
3 void python3_end __ARGS((void)); |
2384
aeea25941392
Temporary solution for crashing when using both :py and :py3: disallow both in
Bram Moolenaar <bram@vim.org>
parents:
2350
diff
changeset
|
4 int python3_loaded __ARGS((void)); |
2350
06feaf4fe36a
Rename some "python3" symbols to "py3", as the command name.
Bram Moolenaar <bram@vim.org>
parents:
2340
diff
changeset
|
5 void ex_py3 __ARGS((exarg_T *eap)); |
5112
f063be86b632
updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents:
4417
diff
changeset
|
6 void ex_py3file __ARGS((exarg_T *eap)); |
4417 | 7 void ex_py3do __ARGS((exarg_T *eap)); |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
8 void python3_buffer_free __ARGS((buf_T *buf)); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
9 void python3_window_free __ARGS((win_T *win)); |
4401 | 10 void python3_tabpage_free __ARGS((tabpage_T *tab)); |
3618 | 11 void do_py3eval __ARGS((char_u *str, typval_T *rettv)); |
6565 | 12 int set_ref_in_python3 __ARGS((int copyID)); |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
13 /* vim: set ft=c : */ |