MCPcopy Create free account
hub / github.com/IAmUnbounded/devctx / showDiff

Function showDiff

devctx/vscode-extension/src/extension.ts:109–119  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

107}
108
109async function showDiff() {
110 try {
111 const { stdout } = await runDevCtx("diff");
112 outputChannel.clear();
113 outputChannel.appendLine("═══ DevContext Diff ═══\n");
114 outputChannel.appendLine(stdout);
115 outputChannel.show();
116 } catch (err: any) {
117 vscode.window.showErrorMessage(`DevContext: ${err.message}`);
118 }
119}
120
121async function updateStatusBar() {
122 try {

Callers

nothing calls this directly

Calls 1

runDevCtxFunction · 0.85

Tested by

no test coverage detected