diff options
author | Birger Skogeng Pedersen <birger.sp@gmail.com> | 2019-09-14 11:18:35 +0200 |
---|---|---|
committer | Pratyush Yadav <me@yadavpratyush.com> | 2019-09-14 23:22:00 +0530 |
commit | ec7424e1a634ba4a509227f003bd9cf31f12b4c2 (patch) | |
tree | 7ad83fb5bc1a867ed96f4addd77e6bd4110f236a /git-gui.sh | |
parent | git-gui: convert new/amend commit radiobutton to checkbutton (diff) | |
download | tgif-ec7424e1a634ba4a509227f003bd9cf31f12b4c2.tar.xz |
git-gui: add hotkey to toggle "Amend Last Commit"
Selecting whether to "Amend Last Commit" or not does not have a hotkey.
With this patch, the user may toggle between the two options with
CTRL/CMD+e.
Signed-off-by: Birger Skogeng Pedersen <birger.sp@gmail.com>
Rebased-by: Bert Wesarg <bert.wesarg@googlemail.com>
Signed-off-by: Pratyush Yadav <me@yadavpratyush.com>
Diffstat (limited to 'git-gui.sh')
-rwxr-xr-x | git-gui.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/git-gui.sh b/git-gui.sh index c7d9103f00..c345b5c6be 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -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 @@ -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 \ @@ -3892,6 +3899,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} |