From 1e1ccbfdd3100a1bb656b11f973381ce4b69decf Mon Sep 17 00:00:00 2001 From: Pratyush Yadav <me@yadavpratyush.com> Date: Sat, 7 Dec 2019 03:16:31 +0530 Subject: [PATCH] git-gui: allow closing console window with Escape This gives users a quick shortcut to close the window. But since the window can also show commands in progress, closing the window on Escape can give the perception that the command has been cancelled even though it hasn't been. So, only enable this binding when the command is done. Signed-off-by: Pratyush Yadav <me@yadavpratyush.com> --- lib/console.tcl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/console.tcl b/lib/console.tcl index 1f3248ffd1..bb6b9c889e 100644 --- a/lib/console.tcl +++ b/lib/console.tcl @@ -203,6 +203,8 @@ method done {ok} { focus $w.ok } } + + bind $w <Key-Escape> "destroy $w;break" } method _sb_set {sb orient first last} {