Skip to content

Commit

Permalink
Merge pull request #1040 from rsteube/gh-issue-list-mention
Browse files Browse the repository at this point in the history
gh: issue list - fix mention completion
  • Loading branch information
rsteube authored Apr 14, 2022
2 parents df5ba50 + d74b648 commit 080cef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion completers/gh_completer/cmd/issue_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func init() {
"label": carapace.ActionMultiParts(",", func(c carapace.Context) carapace.Action {
return action.ActionLabels(issue_listCmd).Invoke(c).Filter(c.Parts).ToA()
}),
"mention": action.ActionAssignableUsers(issue_listCmd),
"mention": action.ActionMentionableUsers(issue_listCmd),
"milestone": action.ActionMilestones(issue_listCmd),
"state": carapace.ActionValues("open", "closed", "all"),
})
Expand Down

0 comments on commit 080cef6

Please sign in to comment.