From 7d0baa4b446cea1eaa37cb2ff4318b64f37df1ab Mon Sep 17 00:00:00 2001 From: Randy Palamar Date: Thu, 23 Nov 2023 06:08:18 -0700 Subject: luadoc: fix broken link and add links between vis/win.options --- vis-lua.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'vis-lua.c') diff --git a/vis-lua.c b/vis-lua.c index 62c0e4c..7c5da2a 100644 --- a/vis-lua.c +++ b/vis-lua.c @@ -1660,6 +1660,7 @@ static const struct luaL_Reg vis_lua[] = { * @tfield[opt=false] boolean ignorecase {ic} * @tfield[opt="auto"] string loadmethod `"auto"`, `"read"`, or `"mmap"`. * @tfield[opt="/bin/sh"] string shell + * @see Window.options */ static int vis_options_index(lua_State *L) { @@ -1857,7 +1858,7 @@ static const struct luaL_Reg registers_funcs[] = { * Most of these marks are stored in the associated File object, meaning they * are the same in all windows displaying the same file. * @field marks array to access the marks of this window by single letter name - * @see Vis:marks_names + * @see Vis:mark_names */ static int window_index(lua_State *L) { Win *win = obj_ref_check(L, 1, VIS_LUA_TYPE_WINDOW); @@ -2176,6 +2177,7 @@ static const struct luaL_Reg window_funcs[] = { * @tfield[opt=false] boolean showtabs * @tfield[opt=8] int tabwidth {tw} * @tfield[opt=0] int wrapcolumn {wc} + * @see Vis.options */ static int window_options_index(lua_State *L) { -- cgit v1.2.3