comparison src/proto/ui.pro @ 24846:fdc6a7769045 v8.2.2961

patch 8.2.2961: keys typed during a :normal command are discarded Commit: https://github.com/vim/vim/commit/c41badb748bbaa78cbadfcda9ca965e8a283fb9b Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 7 22:04:52 2021 +0200 patch 8.2.2961: keys typed during a :normal command are discarded Problem: Keys typed during a :normal command are discarded. Solution: Concatenate saved typeahead and typed kesy. (closes https://github.com/vim/vim/issues/8340)
author Bram Moolenaar <Bram@vim.org>
date Mon, 07 Jun 2021 22:15:04 +0200
parents 9f64c420f280
children 33ca088dbd3e
comparison
equal deleted inserted replaced
24845:78a8d69bfbda 24846:fdc6a7769045
17 int vim_is_input_buf_full(void); 17 int vim_is_input_buf_full(void);
18 int vim_is_input_buf_empty(void); 18 int vim_is_input_buf_empty(void);
19 int vim_free_in_input_buf(void); 19 int vim_free_in_input_buf(void);
20 int vim_used_in_input_buf(void); 20 int vim_used_in_input_buf(void);
21 char_u *get_input_buf(void); 21 char_u *get_input_buf(void);
22 void set_input_buf(char_u *p); 22 void set_input_buf(char_u *p, int overwrite);
23 void add_to_input_buf(char_u *s, int len); 23 void add_to_input_buf(char_u *s, int len);
24 void add_to_input_buf_csi(char_u *str, int len); 24 void add_to_input_buf_csi(char_u *str, int len);
25 void trash_input_buf(void); 25 void trash_input_buf(void);
26 int read_from_input_buf(char_u *buf, long maxlen); 26 int read_from_input_buf(char_u *buf, long maxlen);
27 void fill_input_buf(int exit_on_error); 27 void fill_input_buf(int exit_on_error);