From 2f289fb513fd573e3915a738b2481ce6658ec338 Mon Sep 17 00:00:00 2001 From: Emil Halvarsson Date: Mon, 29 Apr 2024 21:04:55 +0200 Subject: [PATCH] Add workaround for CTRL+Q functionality --- ShowEditorCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShowEditorCommand.cs b/ShowEditorCommand.cs index d4e5e8d..212fdc6 100644 --- a/ShowEditorCommand.cs +++ b/ShowEditorCommand.cs @@ -58,7 +58,7 @@ protected override void ProcessRecord() return true; }; - fileNameStatus = new StatusItem(Key.Unknown, "Unsaved", () => { }); + fileNameStatus = new StatusItem(Key.CtrlMask | Key.Q, "Unsaved", () => { Quit(); }); if (Path != null) {