comparison src/proto/edit.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 fe5afdc03bd2
children 918245588b50
comparison
equal deleted inserted replaced
18716:9568bc68c45d 18717:14d2a210fab1
1 /* edit.c */ 1 /* edit.c */
2 int edit(int cmdchar, int startln, long count); 2 int edit(int cmdchar, int startln, long count);
3 int ins_need_undo_get(void); 3 int ins_need_undo_get(void);
4 void ins_redraw(int ready); 4 void ins_redraw(int ready);
5 int decodeModifyOtherKeys(int c);
5 void edit_putchar(int c, int highlight); 6 void edit_putchar(int c, int highlight);
6 char_u *prompt_text(void); 7 char_u *prompt_text(void);
7 int prompt_curpos_editable(void); 8 int prompt_curpos_editable(void);
8 void edit_unputchar(void); 9 void edit_unputchar(void);
9 void display_dollar(colnr_T col); 10 void display_dollar(colnr_T col);