diff options
author | Viktor Kojouharov <developer@sugr.org> | 2021-05-10 11:27:48 +0200 |
---|---|---|
committer | Viktor Kojouharov <developer@sugr.org> | 2021-05-10 11:27:48 +0200 |
commit | 5ea9cbc280aec623d8c6c262c1b7ccea62d1e566 (patch) | |
tree | 9c02fb7ca684b0f7e75a4f12400561c3b46f795b /src | |
parent | a257f00f75b77ea3cb4e49f28ec36401eaf24f81 (diff) | |
download | rneovim-5ea9cbc280aec623d8c6c262c1b7ccea62d1e566.tar.gz rneovim-5ea9cbc280aec623d8c6c262c1b7ccea62d1e566.tar.bz2 rneovim-5ea9cbc280aec623d8c6c262c1b7ccea62d1e566.zip |
Update the functio documentation in C
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/api/buffer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c index 915b99486d..8724c83e12 100644 --- a/src/nvim/api/buffer.c +++ b/src/nvim/api/buffer.c @@ -1412,12 +1412,12 @@ Array nvim_buf_get_extmarks(Buffer buffer, Integer ns_id, /// /// @param buffer Buffer handle, or 0 for current buffer /// @param ns_id Namespace id from |nvim_create_namespace()| -/// @param line Line number where to place the mark -/// @param col Column where to place the mark +/// @param line Line where to place the mark, 0-based +/// @param col Column where to place the mark, 0-based /// @param opts Optional parameters. /// - id : id of the extmark to edit. /// - end_line : ending line of the mark, 0-based inclusive. -/// - end_col : ending col of the mark, 0-based inclusive. +/// - end_col : ending col of the mark, 0-based exclusive. /// - hl_group : name of the highlight group used to highlight /// this mark. /// - virt_text : virtual text to link to this mark. |