Skip to content

Commit

Permalink
fix: static completions when using prefix (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
aki77 authored Nov 7, 2021
1 parent 0cc44c5 commit be80806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/completions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export function generateCompletions(processor: Processor, colors: colorObject, a
}
}

completions.static.push(...Object.keys(staticUtilities));
completions.static.push(...Object.keys(staticUtilities).map((key) => prefix + key));
completions.attr = attr;
return completions;
}
Expand Down

0 comments on commit be80806

Please sign in to comment.