diff src/proto/term.pro @ 30641:1207b6d6cf9e v9.0.0655

patch 9.0.0655: passing modifier codes to a shell running in the GUI Commit: https://github.com/vim/vim/commit/2f7e1b8b40dbc97752b8b816560f752f16e0207a Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 4 13:17:31 2022 +0100 patch 9.0.0655: passing modifier codes to a shell running in the GUI Problem: passing modifier codes to a shell running in the GUI. (Gary Johnson) Solution: Include modifier codes into the key and drop the modifiers.
author Bram Moolenaar <Bram@vim.org>
date Tue, 04 Oct 2022 14:30:05 +0200
parents ae1113e53ce3
children dcde141f2d1e
line wrap: on
line diff
--- a/src/proto/term.pro
+++ b/src/proto/term.pro
@@ -86,5 +86,5 @@ void update_tcap(int attr);
 void swap_tcap(void);
 void ansi_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx);
 void cterm_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx);
-int term_replace_bs_del_keycode(char_u *ta_buf, int ta_len, int len_arg);
+int term_replace_keycodes(char_u *ta_buf, int ta_len, int len_arg);
 /* vim: set ft=c : */