Thomas Harning <thomas.harning@xxxxxxxxxxxxxxx> wrote: > gitk doesn't appear to have right-click support in OSX, but > gitgui-0.8.1 has it... That's because git-gui has this procedure proc bind_button3 {w cmd} { bind $w <Any-Button-3> $cmd if {[is_MacOSX]} { # Mac OS X sends Button-2 on right click through three-button mouse, # or through trackpad right-clicking (two-finger touch + click). bind $w <Any-Button-2> $cmd bind $w <Control-Button-1> $cmd } } and uses it to configure the binding for the "right-click" scripts rather than calling "bind $w <Any-Button-3> ..." directly. gitk does the latter, and thus fails on Mac OS X. I actually think its a bug in Tcl/Tk on Aqua that it doesn't treat Control-Click as a right click action, or that right mouse click is sent as button 2, but is 3 on ever other system. -- Shawn. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html