Mercurial > vim
diff src/proto/gui.pro @ 21570:f260c1411833 v8.2.1335
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Commit: https://github.com/vim/vim/commit/4e1d8bd79b87b120bd40afe0eba54a419f8c3aee
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 1 13:10:14 2020 +0200
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Problem: CTRL-C in the GUI doesn't interrupt. (Sergey Vlasov)
Solution: Recognize "C" with CTRL modifier as CTRL-C. (issue https://github.com/vim/vim/issues/6565)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 01 Aug 2020 13:15:04 +0200 |
parents | 09a621bdb0bc |
children | aade8ef975d5 |
line wrap: on
line diff
--- a/src/proto/gui.pro +++ b/src/proto/gui.pro @@ -65,4 +65,5 @@ void gui_update_screen(void); char_u *get_find_dialog_text(char_u *arg, int *wwordp, int *mcasep); int gui_do_findrepl(int flags, char_u *find_text, char_u *repl_text, int down); void gui_handle_drop(int x, int y, int_u modifiers, char_u **fnames, int count); +int check_for_interrupt(int key, int modifiers_arg); /* vim: set ft=c : */