()
| 518 | |
| 519 | // search function, similar to calling `?` in R |
| 520 | public async searchHelpByAlias(): Promise<boolean> { |
| 521 | const alias = await this.pickAlias(); |
| 522 | if (alias) { |
| 523 | return this.showHelpForAlias(alias); |
| 524 | } |
| 525 | return false; |
| 526 | } |
| 527 | |
| 528 | // helper function to get aliases from aliasprovider |
| 529 | private async getAllAliases(includePreview: boolean = false): Promise<Alias[] | undefined> { |
no test coverage detected