Skip to content

Commit

Permalink
Merge branch 'bp/amend-toggle-bind'
Browse files Browse the repository at this point in the history
Toggle amend on and off with the keyboard shortcut "Ctrl+e".

* bp/amend-toggle-bind:
  git-gui: add hotkey to toggle "Amend Last Commit"
  • Loading branch information
prati0100 committed Sep 14, 2019
2 parents 6c8ec8c + ec7424e commit f7a8834
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions git-gui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2664,6 +2664,12 @@ proc focus_widget {widget} {
}
}
proc toggle_commit_type {} {
global commit_type_is_amend
set commit_type_is_amend [expr !$commit_type_is_amend]
do_select_commit_type
}
######################################################################
##
## ui construction
Expand Down Expand Up @@ -2854,6 +2860,7 @@ if {[is_enabled multicommit] || [is_enabled singlecommit]} {
if {![is_enabled nocommit]} {
.mbar.commit add checkbutton \
-label [mc "Amend Last Commit"] \
-accelerator $M1T-E \
-variable commit_type_is_amend \
-command do_select_commit_type
lappend disable_on_lock \
Expand Down Expand Up @@ -3898,6 +3905,8 @@ bind . <$M1B-Key-j> do_revert_selection
bind . <$M1B-Key-J> do_revert_selection
bind . <$M1B-Key-i> do_add_all
bind . <$M1B-Key-I> do_add_all
bind . <$M1B-Key-e> toggle_commit_type
bind . <$M1B-Key-E> toggle_commit_type
bind . <$M1B-Key-minus> {show_less_context;break}
bind . <$M1B-Key-KP_Subtract> {show_less_context;break}
bind . <$M1B-Key-equal> {show_more_context;break}
Expand Down

0 comments on commit f7a8834

Please sign in to comment.