From: Felipe Contreras Date: Sat, 7 Apr 2012 00:29:38 +0000 (+0300) Subject: gitk: Avoid Meta1-F5 X-Git-Tag: v1.7.11.7~4^2~2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a135f214e371311f13807da637d492fd9642a2e3;p=git-core%2Fgit.git gitk: Avoid Meta1-F5 Meta1-F5 is commonly mapped by window managers and what not. Use Shift-F5 instead. Signed-off-by: Felipe Contreras Signed-off-by: Paul Mackerras --- diff --git a/gitk b/gitk index 22270ce46..9bba9aa8d 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 . updatecommits - bind . <$M1B-F5> reloadcommits + bind . reloadcommits bind . showrefs bind . {newview 0} catch { bind . {newview 0} }