diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-01-08 11:17:16 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-01-08 11:18:06 -0800 |
commit | fe47c9cb5f98e305a15db24b8a9f62151ae65d8d (patch) | |
tree | 7efca0534124565539fe12f47f847fdc3980f0d3 /git-gui/lib/console.tcl | |
parent | The final batch before -rc2 (diff) | |
parent | Merge branch 'zs/open-current-file' (diff) | |
download | tgif-fe47c9cb5f98e305a15db24b8a9f62151ae65d8d.tar.xz |
Merge https://github.com/prati0100/git-gui
* https://github.com/prati0100/git-gui:
git-gui: allow opening currently selected file in default app
git-gui: allow closing console window with Escape
git gui: fix branch name encoding error
git-gui: revert untracked files by deleting them
git-gui: update status bar to track operations
git-gui: consolidate naming conventions
Diffstat (limited to 'git-gui/lib/console.tcl')
-rw-r--r-- | git-gui/lib/console.tcl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/git-gui/lib/console.tcl b/git-gui/lib/console.tcl index 1f3248ffd1..bb6b9c889e 100644 --- a/git-gui/lib/console.tcl +++ b/git-gui/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} { |