aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/buffer.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2023-07-08 06:29:48 -0700
committerGitHub <noreply@github.com>2023-07-08 06:29:48 -0700
commit7c077a3c2b78387b633b90be92096dd6d357cad7 (patch)
tree4b1fb0e796810f67a36488019fc5ea3474ca79d9 /src/nvim/api/buffer.c
parent8c9e37cc09f5b79a981c574ab8bcfb0b9ed58ca8 (diff)
parentd2e44da516816e2616b531886eb9ba7f4c271fb4 (diff)
downloadrneovim-7c077a3c2b78387b633b90be92096dd6d357cad7.tar.gz
rneovim-7c077a3c2b78387b633b90be92096dd6d357cad7.tar.bz2
rneovim-7c077a3c2b78387b633b90be92096dd6d357cad7.zip
Merge #24295 from justinmk/doc2
docs: "Return (multiple)", condense @notes
Diffstat (limited to 'src/nvim/api/buffer.c')
-rw-r--r--src/nvim/api/buffer.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c
index 02b97b0ae1..a0322556b4 100644
--- a/src/nvim/api/buffer.c
+++ b/src/nvim/api/buffer.c
@@ -1192,8 +1192,9 @@ Boolean nvim_buf_set_mark(Buffer buffer, String name, Integer line, Integer col,
return res;
}
-/// Returns a tuple (row,col) representing the position of the named mark. See
-/// |mark-motions|.
+/// Returns a `(row,col)` tuple representing the position of the named mark.
+/// "End of line" column position is returned as |v:maxcol| (big number).
+/// See |mark-motions|.
///
/// Marks are (1,0)-indexed. |api-indexing|
///