From b6e192dbf73397da0f76252b7e39770150a8763f Mon Sep 17 00:00:00 2001 From: Michele Ballabio Date: Mon, 30 Mar 2009 14:55:21 +0200 Subject: [PATCH] gitk: Map KP_Divide to focus the search box Commit 97bed034 changed the behavior of the '/' key on the keyboard, but the '/' on the keypad was left unused. They now both do the same thing. Signed-off-by: Michele Ballabio Signed-off-by: Paul Mackerras --- gitk | 1 + 1 file changed, 1 insertion(+) diff --git a/gitk b/gitk index afb2241419..a65d961a07 100755 --- a/gitk +++ b/gitk @@ -2313,6 +2313,7 @@ proc makewindow {} { bindkey d "$ctext yview scroll 18 units" bindkey u "$ctext yview scroll -18 units" bindkey / {focus $fstring} + bindkey {focus $fstring} bindkey {dofind 1 1} bindkey ? {dofind -1 1} bindkey f nextfile -- 2.11.4.GIT