Skip to content

Commit

Permalink
git: diff - fix tag
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Jan 5, 2024
1 parent a2d81ec commit d56f546
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 d56f546

Please sign in to comment.