From 09c6ce8c4e4c6415cca9b834539ed0df461373f6 Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Sat, 27 Aug 2022 09:56:58 +0200 Subject: docs: fix typos (#19798) Co-authored-by: adrian5 Co-authored-by: Eisuke Kawashima --- src/nvim/buffer_defs.h | 4 ++-- src/nvim/mapping.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index d22ab266f8..58bdd2c0a8 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -366,8 +366,8 @@ struct mapblock { char m_nowait; // used char m_expr; // used, m_str is an expression sctx_T m_script_ctx; // SCTX where map was defined - char *m_desc; // description of keymap - bool m_replace_keycodes; // replace termcodes in lua function + char *m_desc; // description of mapping + bool m_replace_keycodes; // replace keycodes in result of expression }; /// Used for highlighting in the status line. diff --git a/src/nvim/mapping.c b/src/nvim/mapping.c index ef44d71165..2364a388b3 100644 --- a/src/nvim/mapping.c +++ b/src/nvim/mapping.c @@ -293,7 +293,7 @@ static bool set_maparg_lhs_rhs(const char *const orig_lhs, const size_t orig_lhs replaced = replace_termcodes(orig_rhs, orig_rhs_len, &rhs_buf, REPTERM_DO_LT, NULL, cpo_flags); mapargs->rhs_len = STRLEN(replaced); - // XXX: replace_termcodes may produce an empty string even if orig_rhs is non-empty + // NB: replace_termcodes may produce an empty string even if orig_rhs is non-empty // (e.g. a single ^V, see :h map-empty-rhs) mapargs->rhs_is_noop = orig_rhs_len != 0 && mapargs->rhs_len == 0; mapargs->rhs = (char_u *)replaced; -- cgit