-
Notifications
You must be signed in to change notification settings - Fork 612
Bindings
Vivien Didelot edited this page May 7, 2013
·
33 revisions
Here's a collection of custom bindings you can easily add to your tigrc.
-
Move in diff view with arrow keys:
bind diff Up move-up
andbind diff Down move-down
-
Intent to add:
bind status N !@git add -N %(file)
(might be useful if you want to add-patch a newly created file) -
Stage a single line:
bind stage 1 stage-update-line
-
Interactive rebase:
bind main B !git rebase -i %(commit)
-
Revert:
bind main ! !git revert %(commit)
-
Create a new branch:
bind branch n !@git branch %(prompt)
-
Add/edit notes for the current commit used during a review:
bind generic T !git notes edit %(commit)
-
less-like page scrolling:
bind generic ^f scroll-page-down
andbind generic ^b scroll-page-up