mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-02-14 11:53:26 +01:00
Problem: Python: no easy access to tabpages. Solution: Add vim.tabpages and vim.current.tabpage. (ZyX)
13 lines
476 B
C
13 lines
476 B
C
/* if_python3.c */
|
|
int python3_enabled __ARGS((int verbose));
|
|
void python3_end __ARGS((void));
|
|
int python3_loaded __ARGS((void));
|
|
void ex_py3 __ARGS((exarg_T *eap));
|
|
void ex_py3file __ARGS((exarg_T *eap));
|
|
void python3_buffer_free __ARGS((buf_T *buf));
|
|
void python3_window_free __ARGS((win_T *win));
|
|
void python3_tabpage_free __ARGS((tabpage_T *tab));
|
|
void do_py3eval __ARGS((char_u *str, typval_T *rettv));
|
|
void set_ref_in_python3 __ARGS((int copyID));
|
|
/* vim: set ft=c : */
|