docs: MAINTAIN.md, nvim_get_mark

This commit is contained in:
Justin M. Keyes
2023-07-04 19:22:04 +02:00
parent 8c9e37cc09
commit 00d2f4b96e
7 changed files with 77 additions and 58 deletions

View File

@@ -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|
///