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

Method openExternal

src/plotViewer/index.ts:402–409  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

400 }
401
402 public openExternal(): void {
403 let urlString = `http://${this.host}/live`;
404 if (this.token) {
405 urlString += `?token=${this.token}`;
406 }
407 const uri = vscode.Uri.parse(urlString);
408 void vscode.env.openExternal(uri);
409 }
410
411 // focus a specific plot id
412 public async focusPlot(id?: HttpgdPlotId): Promise<void> {

Callers 7

showBrowserFunction · 0.80
openExternalBrowserFunction · 0.80
showWebViewFunction · 0.80
handleCommandMethod · 0.80
launchTemplatePickerFunction · 0.80
openExternalBrowserMethod · 0.80
openInExternalBrowserMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected