aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitaly _Vi Shukela <public_vi@tut.by>2009-12-31 15:32:53 +0200
committerShawn O. Pearce <spearce@spearce.org>2010-01-06 18:21:11 -0800
commitb677c66e299c8754a6093cbd19ce71b0ad2a8a17 (patch)
tree6a2c20324a91712df8a5f090094700453ecbb20c
parent54350a2bb48f2d4cf56bd2b8220fad7124d3592c (diff)
downloadgit-b677c66e299c8754a6093cbd19ce71b0ad2a8a17.tar.gz
git-b677c66e299c8754a6093cbd19ce71b0ad2a8a17.tar.xz
git-gui: Add hotkeys for "Unstage from commit" and "Revert changes"
Signed-off-by: Vitaly _Vi Shukela <public_vi@tut.by> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rwxr-xr-xgit-gui.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/git-gui.sh b/git-gui.sh
index 718277a65..822d59867 100755
--- a/git-gui.sh
+++ b/git-gui.sh
@@ -2543,12 +2543,14 @@ if {[is_enabled multicommit] || [is_enabled singlecommit]} {
[list .mbar.commit entryconf [.mbar.commit index last] -state]
.mbar.commit add command -label [mc "Unstage From Commit"] \
- -command do_unstage_selection
+ -command do_unstage_selection \
+ -accelerator $M1T-U
lappend disable_on_lock \
[list .mbar.commit entryconf [.mbar.commit index last] -state]
.mbar.commit add command -label [mc "Revert Changes"] \
- -command do_revert_selection
+ -command do_revert_selection \
+ -accelerator $M1T-J
lappend disable_on_lock \
[list .mbar.commit entryconf [.mbar.commit index last] -state]
@@ -3296,6 +3298,10 @@ unset gws
bind $ui_comm <$M1B-Key-Return> {do_commit;break}
bind $ui_comm <$M1B-Key-t> {do_add_selection;break}
bind $ui_comm <$M1B-Key-T> {do_add_selection;break}
+bind $ui_comm <$M1B-Key-u> {do_unstage_selection;break}
+bind $ui_comm <$M1B-Key-U> {do_unstage_selection;break}
+bind $ui_comm <$M1B-Key-j> {do_revert_selection;break}
+bind $ui_comm <$M1B-Key-J> {do_revert_selection;break}
bind $ui_comm <$M1B-Key-i> {do_add_all;break}
bind $ui_comm <$M1B-Key-I> {do_add_all;break}
bind $ui_comm <$M1B-Key-x> {tk_textCut %W;break}