You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[guitool] feature to specify keyboard shortcuts for custom tools
This feature will add following introduce following optional
configuration key into gitconfig
guitool.<name>.gitgui-shortcut
Specifies a keyboard shortcut for the custom tool in the git-gui
application. The value must be a valid string ( without "<" , ">" wrapper )
understood by the TCL/TK 's bind command.See https://www.tcl.tk/man/tcl8.4/TkCmd/bind.htm
for more details about the supported values. Avoid creating shortcuts that
conflict with existing built-in `git gui` shortcuts.
Example:
[guitool "Terminal"]
cmd = gnome-terminal -e zsh
noconsole = yes
gitgui-shortcut = "Control-y"
[guitool "Sync"]
cmd = "git pull; git push"
gitgui-shortcut = "Alt-s"
Signed-off-by: Harish.K <[email protected]>
0 commit comments