Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
autocomplete: fix bold symbols (#255)
  • Loading branch information
juliangruber committed Mar 2, 2020
1 parent 71e1512 commit a3ea77d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/elements/autocomplete.js
Expand Up @@ -216,7 +216,7 @@ class AutocompletePrompt extends Prompt {
let { startIndex, endIndex } = entriesToDisplay(this.select, this.choices.length, this.limit);

this.outputText = [
color.bold(style.symbol(this.done, this.aborted)),
style.symbol(this.done, this.aborted),
color.bold(this.msg),
style.delimiter(this.completing),
this.done && this.suggestions[this.select]
Expand Down

0 comments on commit a3ea77d

Please sign in to comment.