aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/buffer.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2023-07-04 19:22:04 +0200
committerJustin M. Keyes <justinkz@gmail.com>2023-07-08 15:06:36 +0200
commit00d2f4b96eb9c8dcb6b9f67e256bb7faa19354db (patch)
treee3a07530c76cedf34435ce11df117a7e33a03a7d /src/nvim/api/buffer.c
parent8c9e37cc09f5b79a981c574ab8bcfb0b9ed58ca8 (diff)
downloadrneovim-00d2f4b96eb9c8dcb6b9f67e256bb7faa19354db.tar.gz
rneovim-00d2f4b96eb9c8dcb6b9f67e256bb7faa19354db.tar.bz2
rneovim-00d2f4b96eb9c8dcb6b9f67e256bb7faa19354db.zip
docs: MAINTAIN.md, nvim_get_mark
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|
///