(
alias: Alias,
preserveFocus: boolean = false,
)
| 573 | } |
| 574 | |
| 575 | private async showHelpForAlias( |
| 576 | alias: Alias, |
| 577 | preserveFocus: boolean = false, |
| 578 | ): Promise<boolean> { |
| 579 | return this.showHelpForPath( |
| 580 | `/library/${alias.package}/html/${alias.name}.html`, |
| 581 | undefined, |
| 582 | preserveFocus, |
| 583 | ); |
| 584 | } |
| 585 | |
| 586 | // shows help for request path as used by R's internal help server |
| 587 | public async showHelpForPath( |
no test coverage detected