comparison src/proto/term.pro @ 18717:14d2a210fab1 v8.1.2350

patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys Commit: https://github.com/vim/vim/commit/fc4ea2a72d36de1196a3ce17352e72f8fe90f4bb Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 26 19:33:22 2019 +0100 patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys Problem: Other text for CTRL-V in Insert mode with modifyOtherKeys. Solution: Convert the Escape sequence back to key as if modifyOtherKeys is not set, and use CTRL-SHIFT-V to get the Escape sequence itself. (closes #5254)
author Bram Moolenaar <Bram@vim.org>
date Tue, 26 Nov 2019 19:45:04 +0100
parents fd95d4dbeb37
children f7081bd2680e
comparison
equal deleted inserted replaced
18716:9568bc68c45d 18717:14d2a210fab1
63 char_u *get_termcode(int i); 63 char_u *get_termcode(int i);
64 int get_termcode_len(int idx); 64 int get_termcode_len(int idx);
65 void del_termcode(char_u *name); 65 void del_termcode(char_u *name);
66 void set_mouse_topline(win_T *wp); 66 void set_mouse_topline(win_T *wp);
67 int is_mouse_topline(win_T *wp); 67 int is_mouse_topline(win_T *wp);
68 int decode_modifiers(int n);
68 int check_termcode(int max_offset, char_u *buf, int bufsize, int *buflen); 69 int check_termcode(int max_offset, char_u *buf, int bufsize, int *buflen);
69 void term_get_fg_color(char_u *r, char_u *g, char_u *b); 70 void term_get_fg_color(char_u *r, char_u *g, char_u *b);
70 void term_get_bg_color(char_u *r, char_u *g, char_u *b); 71 void term_get_bg_color(char_u *r, char_u *g, char_u *b);
71 char_u *replace_termcodes(char_u *from, char_u **bufp, int flags, int *did_simplify); 72 char_u *replace_termcodes(char_u *from, char_u **bufp, int flags, int *did_simplify);
72 void show_termcodes(void); 73 void show_termcodes(void);