aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/mapping.h
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-09-06 20:38:26 +0200
committerGitHub <noreply@github.com>2022-09-06 20:38:26 +0200
commit74a8b5982a27cdccc6505343a9feeba1b3e74e31 (patch)
tree5e85d41e4115977863908fbcded226169b02ebd8 /src/nvim/mapping.h
parent707edfc9e6a1745f268d1a9184183da521dc86b8 (diff)
parent73207cae611a1efb8cd17139e8228772daeb9866 (diff)
downloadrneovim-74a8b5982a27cdccc6505343a9feeba1b3e74e31.tar.gz
rneovim-74a8b5982a27cdccc6505343a9feeba1b3e74e31.tar.bz2
rneovim-74a8b5982a27cdccc6505343a9feeba1b3e74e31.zip
Merge pull request #20031 from dundargoc/refactor/char_u/8
refactor: replace char_u with char 8: remove `vim_strsave`
Diffstat (limited to 'src/nvim/mapping.h')
-rw-r--r--src/nvim/mapping.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mapping.h b/src/nvim/mapping.h
index 7c48c3bce2..182d1a48cb 100644
--- a/src/nvim/mapping.h
+++ b/src/nvim/mapping.h
@@ -35,7 +35,7 @@ struct map_arguments {
char_u alt_lhs[MAXMAPLEN + 1];
size_t alt_lhs_len;
- char_u *rhs; /// The {rhs} of the mapping.
+ char *rhs; /// The {rhs} of the mapping.
size_t rhs_len;
LuaRef rhs_lua; /// lua function as {rhs}
bool rhs_is_noop; /// True when the {rhs} should be <Nop>.