mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-02-05 11:33:15 +01:00
Problem: Evaluating Vim expression in Python is insufficient. Solution: Add vim.bindeval(). Also add pyeval() and py3eval(). (ZyX)
12 lines
424 B
C
12 lines
424 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 do_py3eval __ARGS((char_u *str, typval_T *rettv));
|
|
void set_ref_in_python3 __ARGS((int copyID));
|
|
/* vim: set ft=c : */
|