* Display suggestion of similar commands for unknown commands, or options for unknown options. * * @param {boolean} [displaySuggestion] * @return {Command} `this` command for chaining
(displaySuggestion = true)
| 272 | * @return {Command} `this` command for chaining |
| 273 | */ |
| 274 | showSuggestionAfterError(displaySuggestion = true) { |
| 275 | this._showSuggestionAfterError = !!displaySuggestion; |
| 276 | return this; |
| 277 | } |
| 278 | |
| 279 | /** |
| 280 | * Add a prepared subcommand. |
no outgoing calls