diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-11-25 01:08:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-25 01:08:02 -0800 |
commit | fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c (patch) | |
tree | e4b2b481998ce60f33d60eb4f6bcb59f092ba8d2 /src/nvim/ops.c | |
parent | 967f229f32a3093613feaf99969e44333efd8a0a (diff) | |
download | rneovim-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/ops.c')
-rw-r--r-- | src/nvim/ops.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index f2d35d5e43..294c65ca03 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -5204,8 +5204,7 @@ void write_reg_contents_lst(int name, char_u **strings, /// write_reg_contents_ex - store `str` in register `name` /// -/// If `str` ends in '\n' or '\r', use linewise, otherwise use -/// characterwise. +/// If `str` ends in '\n' or '\r', use linewise, otherwise use charwise. /// /// @warning when `name` is '/', `len` and `must_append` are ignored. This /// means that `str` MUST be NUL-terminated. |