Skip to content

Commit

Permalink
Merge pull request #2118 from rsteube/git-diff-tag
Browse files Browse the repository at this point in the history
git: diff - fix tag
  • Loading branch information
rsteube authored Jan 5, 2024
2 parents a2d81ec + d56f546 commit fc91d66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion completers/git_completer/cmd/diff.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func init() {
}

if len(filtered) > 0 { // multipart for potentially large diffs
action = action.MultiParts("/").StyleF(style.ForPathExt)
action = action.MultiParts("/").StyleF(style.ForPathExt).Tag("changed files")
}
batch = append(batch, action)
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/actions/tools/git/diff.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,5 +176,5 @@ func actionRefDiffs(cached bool, refs ...string) carapace.Action {
}
return carapace.ActionValuesDescribed(vals...).StyleF(style.ForPathExt)
})
})
}).Tag("changed files")
}

0 comments on commit fc91d66

Please sign in to comment.