diff options
Diffstat (limited to '.tigrc')
-rw-r--r-- | .tigrc | 36 |
1 files changed, 24 insertions, 12 deletions
@@ -1,19 +1,31 @@ -bind generic + !git commit --amend -bind generic 9 @sh -c "echo -n %(commit) | xclip -selection c" -bind generic T !git notes edit %(commit) -bind refs 3 !git rebase -i %(branch) +# Navigation +bind generic g move-first-line +bind generic G move-last-line +bind main G move-last-line -# Search for previous diff (c)hunk and next diff header +# Search for diff (c)hunk and diff header bind stage 2 :?^@@ -bind stage D :/^diff --(git|cc) +bind diff 2 :?^@@ +bind stage 3 :/^diff --(git|cc) +bind diff 3 :/^diff --(git|cc) + +# Changes +bind generic + ?git commit --amend + +# Branches +bind refs 3 ?git rebase -i %(branch) +bind refs M ?git merge %(branch) # Grep view bind generic S view-grep -# Copy current commit ID to the clipboard -bind generic I !git add -i %(file) +# Use git difftool to view the diff +bind generic D !git difftool --no-prompt --trust-exit-code %(commit)^! +bind diff D !git difftool --no-prompt --trust-exit-code %(commit)^! -- %(file) +bind stage D !git difftool --no-prompt --trust-exit-code HEAD -- %(file) +bind stage D !sh -c "git difftool --tool=vimdiff --trust-exit-code --no-prompt `expr '%(status)' : 'Staged changes' >/dev/null && echo --staged` -- '%(file)'" -# Navigation -bind generic g move-first-line -bind generic G move-last-line -bind main G move-last-line +# Misc +bind generic T !git notes edit %(commit) +## Copy current commit ID to the clipboard +bind generic 9 @sh -c "echo -n %(commit) | xclip -selection c" |