summaryrefslogtreecommitdiff
path: root/gitk
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2012-04-07 00:29:38 (GMT)
committerPaul Mackerras <paulus@samba.org>2012-04-25 03:44:31 (GMT)
commita135f214e371311f13807da637d492fd9642a2e3 (patch)
tree799398fd818f01ebe82da2e1c252a0d43273e585 /gitk
parent39ddf99c1db8b230ec7bdefc6ce3c769d1cf4ab6 (diff)
downloadgit-a135f214e371311f13807da637d492fd9642a2e3.zip
git-a135f214e371311f13807da637d492fd9642a2e3.tar.gz
git-a135f214e371311f13807da637d492fd9642a2e3.tar.bz2
gitk: Avoid Meta1-F5
Meta1-F5 is commonly mapped by window managers and what not. Use Shift-F5 instead. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'gitk')
-rwxr-xr-xgitk4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitk b/gitk
index 22270ce..9bba9aa 100755
--- a/gitk
+++ b/gitk
@@ -2038,7 +2038,7 @@ proc makewindow {} {
set file {
mc "File" cascade {
{mc "Update" command updatecommits -accelerator F5}
- {mc "Reload" command reloadcommits -accelerator Meta1-F5}
+ {mc "Reload" command reloadcommits -accelerator Shift-F5}
{mc "Reread references" command rereadrefs}
{mc "List references" command showrefs -accelerator F2}
{xx "" separator}
@@ -2495,7 +2495,7 @@ proc makewindow {} {
bindkey ? {dofind -1 1}
bindkey f nextfile
bind . <F5> updatecommits
- bind . <$M1B-F5> reloadcommits
+ bind . <Shift-F5> reloadcommits
bind . <F2> showrefs
bind . <Shift-F4> {newview 0}
catch { bind . <Shift-Key-XF86_Switch_VT_4> {newview 0} }