diff options
author | Patrice Peterson <patrice.peterson@mailbox.org> | 2021-09-10 17:41:51 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2021-09-10 17:59:28 -0700 |
commit | 9b553ad28df74f0a0c5f20a96ab1248c8724b1c1 (patch) | |
tree | e24479ae95fdd7882523c5d4b014e78696e961f9 /src/nvim/api/vim.c | |
parent | 9697023a0be2511f9e9be59a73afe3a2d5b7bf23 (diff) | |
download | rneovim-9b553ad28df74f0a0c5f20a96ab1248c8724b1c1.tar.gz rneovim-9b553ad28df74f0a0c5f20a96ab1248c8724b1c1.tar.bz2 rneovim-9b553ad28df74f0a0c5f20a96ab1248c8724b1c1.zip |
docs: extmark indexing #12742
Extmarks mostly use api-indexing, except for nvim_buf_get_extmarks(),
which uses api-indexing with inclusive ranges.
ref #11456
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 5f48a26a29..8f848aba32 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -275,9 +275,9 @@ static void on_redraw_event(void **argv) /// /// On execution error: does not fail, but updates v:errmsg. /// -/// If you need to input sequences like <C-o> use |nvim_replace_termcodes| to -/// replace the termcodes and then pass the resulting string to nvim_feedkeys. -/// You'll also want to enable escape_csi. +/// To input sequences like <C-o> use |nvim_replace_termcodes()| (typically +/// with escape_csi=true) to replace |keycodes|, then pass the result to +/// nvim_feedkeys(). /// /// Example: /// <pre> |