]> git.ipfire.org Git - thirdparty/git.git/commitdiff
gitk: Avoid Meta1-F5
authorFelipe Contreras <felipe.contreras@gmail.com>
Sat, 7 Apr 2012 00:29:38 +0000 (03:29 +0300)
committerPaul Mackerras <paulus@samba.org>
Wed, 25 Apr 2012 03:44:31 +0000 (13:44 +1000)
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>
gitk

diff --git a/gitk b/gitk
index 22270ce46bb73bc8fc8e82409ef0179576f7ba20..9bba9aa8d1128c4e2b52b26060e727511ebbb221 100755 (executable)
--- 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} }