Mercurial > vim
annotate src/proto/if_python3.pro @ 5312:8b5d80861c5e v7.4.009
updated for version 7.4.009
Problem: When a file was not decrypted (yet), writing it may destroy the
contents.
Solution: Mark the file as readonly until decryption was done. (Christian
Brabandt)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sun, 25 Aug 2013 17:46:08 +0200 |
parents | f063be86b632 |
children | 38add5a3d617 |
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)); |
12 void 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 : */ |