OSDN Git Service

git-gui: Allow shift-{k,j} to select a range of branches to merge
authorShawn O. Pearce <spearce@spearce.org>
Wed, 9 May 2007 01:38:46 +0000 (21:38 -0400)
committerShawn O. Pearce <spearce@spearce.org>
Wed, 9 May 2007 01:38:46 +0000 (21:38 -0400)
I found it useful to be able to use j/k (vi-like keys) to move
up and down the list of branches to merge and shift-j/k to do
the selection, much as shift-up/down (arrow keys) would alter
the selection.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
lib/merge.tcl

index 3dce856..642d6ee 100644 (file)
@@ -238,6 +238,8 @@ proc dialog {} {
                        $subj([lindex $ref 0])]
        }
 
+       bind $w.source.l <Key-K> [list event generate %W <Shift-Key-Up>]
+       bind $w.source.l <Key-J> [list event generate %W <Shift-Key-Down>]
        bind $w.source.l <Key-k> [list event generate %W <Key-Up>]
        bind $w.source.l <Key-j> [list event generate %W <Key-Down>]
        bind $w.source.l <Key-h> [list event generate %W <Key-Left>]