aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRandy Palamar <randy@rnpnr.xyz>2023-11-23 06:08:18 -0700
committerRandy Palamar <randy@rnpnr.xyz>2023-11-23 06:08:57 -0700
commit7d0baa4b446cea1eaa37cb2ff4318b64f37df1ab (patch)
treee1221eaeeee8604f8cb63259e6cf84106448f152
parentd1eb36c96a5d98b0ea9a4422fbd247261e169fa5 (diff)
downloadvis-7d0baa4b446cea1eaa37cb2ff4318b64f37df1ab.tar.gz
vis-7d0baa4b446cea1eaa37cb2ff4318b64f37df1ab.tar.xz
luadoc: fix broken link and add links between vis/win.options
-rw-r--r--vis-lua.c4
1 files changed, 3 insertions, 1 deletions
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) {