view src/proto/if_lua.pro @ 29585:e357bc89bb95 v9.0.0133

patch 9.0.0133: virtual text after line moves to joined line Commit: https://github.com/vim/vim/commit/e175dc6911948bcd0c854876b534fee62fb95b9f Author: Bram Moolenaar <Bram@vim.org> Date: Mon Aug 1 22:18:50 2022 +0100 patch 9.0.0133: virtual text after line moves to joined line Problem: Virtual text after line moves to joined line. (Yegappan Lakshmanan) Solution: When joining lines only keep virtual text after the last line.
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Aug 2022 23:30:03 +0200
parents 054ba681412d
children
line wrap: on
line source

/* if_lua.c */
int lua_enabled(int verbose);
void lua_end(void);
void ex_lua(exarg_T *eap);
void ex_luado(exarg_T *eap);
void ex_luafile(exarg_T *eap);
void lua_buffer_free(buf_T *o);
void lua_window_free(win_T *o);
void do_luaeval(char_u *str, typval_T *arg, typval_T *rettv);
int set_ref_in_lua(int copyID);
void update_package_paths_in_lua(void);
/* vim: set ft=c : */