Skip to content

Commit

Permalink
Add branch expansion for difftool
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlbyk committed Nov 30, 2010
1 parent 9343ceb commit 341e65e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion GitTabExpansion.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,10 @@ function GitTabExpansion($lastBlock) {

# Handles git cherry-pick <commit>
# Handles git diff <commit>
# Handles git difftool <commit>
# Handles git log <commit>
# Handles git show <commit>
'^git (?:cherry-pick|diff|log|show).* (?<commit>\S*)$' {
'^git (?:cherry-pick|diff|difftool|log|show).* (?<commit>\S*)$' {
gitLocalBranches $matches['commit']
}

Expand Down

0 comments on commit 341e65e

Please sign in to comment.