Browse Source

[PATCH] gitk: bind <F5> key to Update (reread commits)

I chose <F5> because it's also the key to reload the current
page in web browsers such as Konqueror and Firefox, so users
are more likely to be familiar with it.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
maint
Eric Wong 18 years ago committed by Paul Mackerras
parent
commit
e7a0919115
  1. 2
      gitk

2
gitk

@ -720,6 +720,7 @@ proc makewindow {} { @@ -720,6 +720,7 @@ proc makewindow {} {
bindkey <Key-Return> {findnext 0}
bindkey ? findprev
bindkey f nextfile
bindkey <F5> updatecommits
bind . <Control-q> doquit
bind . <Control-f> dofind
bind . <Control-g> {findnext 0}
@ -985,6 +986,7 @@ f Scroll diff view to next file @@ -985,6 +986,7 @@ f Scroll diff view to next file
<Ctrl-plus> Increase font size
<Ctrl-KP-> Decrease font size
<Ctrl-minus> Decrease font size
<F5> Update
} \
-justify left -bg white -border 2 -relief sunken
pack $w.m -side top -fill both

Loading…
Cancel
Save