comparison src/gui_w32.c @ 12066:8ad282dee649 v8.0.0913

patch 8.0.0913: MS-Windows: CTRL-C kills shell in terminal window commit https://github.com/vim/vim/commit/9698ad7201ca1a3acec69679f1ab8b15323ff406 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 12 14:52:15 2017 +0200 patch 8.0.0913: MS-Windows: CTRL-C kills shell in terminal window Problem: MS-Windows: CTRL-C kills shell in terminal window instead of the command running in the shell. Solution: Make CTRL-C only send a CTRL_C_EVENT and have CTRL-BREAK kill the job. (partly by Yasuhiro Matsumoto, closes #1962)
author Christian Brabandt <cb@256bit.org>
date Sat, 12 Aug 2017 15:00:04 +0200
parents 5a5709918a98
children c4caf49c8bf4
comparison
equal deleted inserted replaced
12065:78404a915726 12066:8ad282dee649
1838 /* Check for CTRL-BREAK */ 1838 /* Check for CTRL-BREAK */
1839 if (vk == VK_CANCEL) 1839 if (vk == VK_CANCEL)
1840 { 1840 {
1841 trash_input_buf(); 1841 trash_input_buf();
1842 got_int = TRUE; 1842 got_int = TRUE;
1843 ctrl_break_was_pressed = TRUE;
1843 string[0] = Ctrl_C; 1844 string[0] = Ctrl_C;
1844 add_to_input_buf(string, 1); 1845 add_to_input_buf(string, 1);
1845 } 1846 }
1846 1847
1847 for (i = 0; special_keys[i].key_sym != 0; i++) 1848 for (i = 0; special_keys[i].key_sym != 0; i++)