From: Johannes Schindelin Date: Tue, 9 Jan 2018 14:33:04 +0000 (+0100) Subject: git-gui: allow Ctrl+T to toggle multiple paths X-Git-Tag: v2.16.0-rc2~17^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=76756d67061076c046973bff2089ad49f5dc2eb6;p=git git-gui: allow Ctrl+T to toggle multiple paths It is possible to select multiple files in the "Unstaged Changes" and the "Staged Changes" lists. But when hitting Ctrl+T, surprisingly only one entry is handled, not all selected ones. Let's just use the same code path as for the "Stage To Commit" and the "Unstage From Commit" menu items. This fixes https://github.com/git-for-windows/git/issues/1012 Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/git-gui.sh b/git-gui.sh index b3c14acbdf..3fc254c37d 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -2502,6 +2502,19 @@ proc toggle_or_diff {mode w args} { set pos [split [$w index @$x,$y] .] foreach {lno col} $pos break } else { + if {$mode eq "toggle"} { + if {$w eq $ui_workdir} { + do_add_selection + set last_clicked {} + return + } + if {$w eq $ui_index} { + do_unstage_selection + set last_clicked {} + return + } + } + if {$last_clicked ne {}} { set lno [lindex $last_clicked 1] } else {