comparison src/os_win32.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 779c9247cc0e
children ca55e69d9d1b
comparison
equal deleted inserted replaced
12065:78404a915726 12066:8ad282dee649
6294 mch_breakcheck(int force) 6294 mch_breakcheck(int force)
6295 { 6295 {
6296 #ifndef FEAT_GUI_W32 /* never used */ 6296 #ifndef FEAT_GUI_W32 /* never used */
6297 if (g_fCtrlCPressed || g_fCBrkPressed) 6297 if (g_fCtrlCPressed || g_fCBrkPressed)
6298 { 6298 {
6299 ctrl_break_was_pressed = g_fCBrkPressed;
6299 g_fCtrlCPressed = g_fCBrkPressed = FALSE; 6300 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
6300 got_int = TRUE; 6301 got_int = TRUE;
6301 } 6302 }
6302 #endif 6303 #endif
6303 } 6304 }