Skip to content

Commit

Permalink
Fixed tab completion bug
Browse files Browse the repository at this point in the history
  • Loading branch information
WillFP committed Jul 12, 2024
1 parent f321296 commit 52c1b52
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ abstract class HandledCommand(
completions
)

return completions
if (completions.isNotEmpty()) {
return completions
}
}

if (args.size >= 2) {
Expand Down

0 comments on commit 52c1b52

Please sign in to comment.