diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-23 18:12:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-23 18:12:37 +0800 |
commit | 1849cf0e4c4376445ff05b9f7f5604b22ac915ff (patch) | |
tree | c1ddf3a082b8379a25c2d862a1df8fda227c37e6 /src/nvim/getchar.c | |
parent | d0ced2a127ab3974deaefcfab214b564b1ef48e7 (diff) | |
parent | 6cee15da7235b6ba9c428ee43346415fe6a64e6c (diff) | |
download | rneovim-1849cf0e4c4376445ff05b9f7f5604b22ac915ff.tar.gz rneovim-1849cf0e4c4376445ff05b9f7f5604b22ac915ff.tar.bz2 rneovim-1849cf0e4c4376445ff05b9f7f5604b22ac915ff.zip |
Merge pull request #19476 from zeertzjq/vim-9.0.0059
vim-patch:9.0.{0059,0061}
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r-- | src/nvim/getchar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index 2d10ad7ddb..3e8591b2be 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -1808,7 +1808,7 @@ static int handle_mapping(int *keylenp, bool *timedout, int *mapdepth) int local_State = get_real_state(); bool is_plug_map = false; - // If typehead starts with <Plug> then remap, even for a "noremap" mapping. + // If typeahead starts with <Plug> then remap, even for a "noremap" mapping. if (typebuf.tb_len >= 3 && typebuf.tb_buf[typebuf.tb_off] == K_SPECIAL && typebuf.tb_buf[typebuf.tb_off + 1] == KS_EXTRA |