Mercurial > vim
annotate src/proto/if_python3.pro @ 4153:7728d626ae03 v7.3.829
updated for version 7.3.829
Problem: When compiled with the +rightleft feature 'showmatch' also shows a
match for the opening paren. When 'revins' is set the screen may
scroll.
Solution: Only check the opening paren when the +rightleft feature was
enabled. Do not show a match that is not visible. (partly by
Christian Brabandt)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 20 Feb 2013 18:39:13 +0100 |
parents | c052f3b79b99 |
children | cfd76908da25 |
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)); |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
6 void ex_py3file __ARGS((exarg_T *eap)); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
7 void python3_buffer_free __ARGS((buf_T *buf)); |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
8 void python3_window_free __ARGS((win_T *win)); |
3618 | 9 void do_py3eval __ARGS((char_u *str, typval_T *rettv)); |
10 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
|
11 /* vim: set ft=c : */ |