aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/vim.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-11-25 01:08:02 -0800
committerGitHub <noreply@github.com>2019-11-25 01:08:02 -0800
commitfd5710ae9a3bcbc0f9cbb71de9e39253350ff09c (patch)
treee4b2b481998ce60f33d60eb4f6bcb59f092ba8d2 /src/nvim/api/vim.c
parent967f229f32a3093613feaf99969e44333efd8a0a (diff)
downloadrneovim-fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c.tar.gz
rneovim-fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c.tar.bz2
rneovim-fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c.zip
doc + extmarks tweaks #11421
- nvim_buf_get_extmarks: rename "amount" => "limit" - rename `set_extmark_index_from_obj`
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r--src/nvim/api/vim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index 3535bc3186..9adc61b843 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -1291,7 +1291,7 @@ theend:
/// @param lines |readfile()|-style list of lines. |channel-lines|
/// @param type Edit behavior: any |getregtype()| result, or:
/// - "b" |blockwise-visual| mode (may include width, e.g. "b3")
-/// - "c" |characterwise| mode
+/// - "c" |charwise| mode
/// - "l" |linewise| mode
/// - "" guess by contents, see |setreg()|
/// @param after Insert after cursor (like |p|), or before (like |P|).