Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
gitk: Refactor code for binding modified function keys
author
Andrew Wong
<andrew.kw.w@gmail.com>
Tue, 2 Oct 2012 15:04:44 +0000
(11:04 -0400)
committer
Paul Mackerras
<paulus@samba.org>
Sun, 21 Oct 2012 22:16:31 +0000
(09:16 +1100)
The function includes a workaround for systems where F* keys are mapped
to XF86_Switch_VT_* when modifiers are used.
Signed-off-by: Andrew Wong <andrew.kw.w@gmail.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
gitk
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
f062e50
)
diff --git
a/gitk
b/gitk
index 379582a5f763e37ade59622794bfba3c2e391078..f8f89a5052c5917fb2dc56ebd9e4902c61b2f4c8 100755
(executable)
--- a/
gitk
+++ b/
gitk
@@
-2503,8
+2503,7
@@
proc makewindow {} {
bind . <F5> updatecommits
bind . <Shift-F5> reloadcommits
bind . <F2> showrefs
bind . <F5> updatecommits
bind . <Shift-F5> reloadcommits
bind . <F2> showrefs
- bind . <Shift-F4> {newview 0}
- catch { bind . <Shift-Key-XF86_Switch_VT_4> {newview 0} }
+ bindmodfunctionkey Shift 4 {newview 0}
bind . <F4> edit_or_newview
bind . <$M1B-q> doquit
bind . <$M1B-f> {dofind 1 1}
bind . <F4> edit_or_newview
bind . <$M1B-q> doquit
bind . <$M1B-f> {dofind 1 1}
@@
-2653,6
+2652,11
@@
proc bindkey {ev script} {
}
}
}
}
+proc bindmodfunctionkey {mod n script} {
+ bind . <$mod-F$n> $script
+ catch { bind . <$mod-XF86_Switch_VT_$n> $script }
+}
+
# set the focus back to the toplevel for any click outside
# the entry widgets
proc click {w} {
# set the focus back to the toplevel for any click outside
# the entry widgets
proc click {w} {