()
| 107 | } |
| 108 | |
| 109 | async 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 | |
| 121 | async function updateStatusBar() { |
| 122 | try { |
nothing calls this directly
no test coverage detected