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

Function viewItem

src/workspaceViewer.ts:372–378  ·  view source on GitHub ↗
(node: string)

Source from the content-addressed store, hash-verified

370}
371
372export function viewItem(node: string): void {
373 if (isLiveShare()) {
374 void runTextInTerm(`View(${node}, uuid = ${UUID})`);
375 } else {
376 void runTextInTerm(`View(${node})`);
377 }
378}
379
380export function removeItem(node: string): void {
381 void runTextInTerm(`rm(${node})`);

Callers

nothing calls this directly

Calls 2

isLiveShareFunction · 0.90
runTextInTermFunction · 0.90

Tested by

no test coverage detected