MCPcopy Index your code
hub / github.com/REditorSupport/vscode-R / showHelpFile

Method showHelpFile

src/helpViewer/index.ts:653–667  ·  view source on GitHub ↗
(
        helpFile: HelpFile | Promise<HelpFile>,
        viewer?: string | any,
        preserveFocus: boolean = false,
        panel?: HelpPanel,
    )

Source from the content-addressed store, hash-verified

651
652 // shows (internal) help file object in webview
653 private async showHelpFile(
654 helpFile: HelpFile | Promise<HelpFile>,
655 viewer?: string | any,
656 preserveFocus: boolean = false,
657 panel?: HelpPanel,
658 ): Promise<boolean> {
659 panel ||= this.getNewestHelpPanel();
660 return await panel.showHelpFile(
661 helpFile,
662 undefined,
663 undefined,
664 viewer,
665 preserveFocus,
666 );
667 }
668}
669
670// improves the help display by applying syntax highlighting and adjusting hyperlinks

Callers 1

showHelpForPathMethod · 0.95

Calls 1

getNewestHelpPanelMethod · 0.95

Tested by

no test coverage detected