提交 0ec49941 编写于 作者: A Alex

Allow alt+F4 to close window in integrated terminal on Windows

上级 2cc5e38b
......@@ -328,6 +328,10 @@ export class TerminalInstance implements ITerminalInstance {
if (TabFocus.getTabFocusMode() && event.keyCode === 9) {
return false;
}
// Skip alt+F4
if (platform.isWindows && event.altKey && event.keyCode === 115 && !event.ctrlKey) {
return false;
}
return undefined;
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册