diff --git a/user/api.html b/user/api.html index ee83a762ad3e..7fd7401f335a 100644 --- a/user/api.html +++ b/user/api.html @@ -1452,7 +1452,7 @@
{name}
, {opts}
) nvim_get_mark()
+nvim_get_mark({name}
, {*opts}
) nvim_get_mark()
Returns a (row, col, buffer, buffername)
tuple representing the position
of the uppercase/file named mark. "End of line" column position is
returned as v:maxcol (big number). See mark-motions.
@@ -1758,7 +1758,7 @@ {buffer}
, {opts}
) nvim_open_term()
+nvim_open_term({buffer}
, {*opts}
) nvim_open_term()
Open a terminal instance in a buffer
@@ -1903,7 +1903,7 @@ nvim_select_popupmenu_item()
-nvim_select_popupmenu_item({item}
, {insert}
, {finish}
, {opts}
)
+nvim_select_popupmenu_item({item}
, {insert}
, {finish}
, {*opts}
)
Selects an item in the completion popup menu.
@@ -2686,7 +2686,7 @@ {str}
, {opts}
) nvim_parse_cmd()
+nvim_parse_cmd({str}
, {*opts}
) nvim_parse_cmd()
Parse command line.
@@ -2918,7 +2918,7 @@ {buffer}
, {send_buffer}
, {opts}
) nvim_buf_attach()
+nvim_buf_attach({buffer}
, {send_buffer}
, {*opts}
) nvim_buf_attach()
Activates buffer-update events on a channel, or as Lua callbacks.
@@ -3104,7 +3104,7 @@ {buffer}
, {opts}
) nvim_buf_delete()
+nvim_buf_delete({buffer}
, {*opts}
) nvim_buf_delete()
Deletes the buffer. See :bwipeout
@@ -3285,7 +3285,7 @@ nvim_buf_get_text()
nvim_buf_get_text({buffer}
, {start_row}
, {start_col}
, {end_row}
, {end_col}
,
- {opts}
)
+ {*opts}
)
Gets a range from the buffer.
@@ -3445,7 +3445,7 @@ nvim_buf_set_mark()
-nvim_buf_set_mark({buffer}
, {name}
, {line}
, {col}
, {opts}
)
+nvim_buf_set_mark({buffer}
, {name}
, {line}
, {col}
, {*opts}
)
Sets a named mark in the given buffer, all marks are allowed
file/uppercase, visual, last change, etc. See mark-motions.
@@ -3649,7 +3649,7 @@ nvim_buf_get_extmark_by_id()
-nvim_buf_get_extmark_by_id({buffer}
, {ns_id}
, {id}
, {opts}
)
+nvim_buf_get_extmark_by_id({buffer}
, {ns_id}
, {id}
, {*opts}
)
Gets the position (0-indexed) of an extmark.
@@ -5190,7 +5190,7 @@