mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00
docs: MAINTAIN.md, nvim_get_mark
This commit is contained in:
@@ -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|
|
||||
///
|
||||
|
@@ -1980,12 +1980,13 @@ Boolean nvim_del_mark(String name, Error *err)
|
||||
return res;
|
||||
}
|
||||
|
||||
/// Return a tuple (row, col, buffer, buffername) representing the position of
|
||||
/// the uppercase/file named mark. See |mark-motions|.
|
||||
/// 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|.
|
||||
///
|
||||
/// Marks are (1,0)-indexed. |api-indexing|
|
||||
///
|
||||
/// @note fails with error if a lowercase or buffer local named mark is used.
|
||||
/// @note Lowercase name (or other buffer-local mark) is an error.
|
||||
/// @param name Mark name
|
||||
/// @param opts Optional parameters. Reserved for future use.
|
||||
/// @return 4-tuple (row, col, buffer, buffername), (0, 0, 0, '') if the mark is
|
||||
|
Reference in New Issue
Block a user