F10: interactive track-changes review in the markdown preview (#29) #30

Merged
benstull merged 17 commits from f10-interactive-review into main 2026-06-12 07:39:51 +00:00
2 changed files with 0 additions and 20 deletions
Showing only changes of commit 831710ed0c - Show all commits
-9
View File
@@ -44,11 +44,6 @@
"title": "Reopen Thread",
"category": "Cowriting"
},
{
"command": "cowriting.toggleAttribution",
"title": "Toggle Attribution",
"category": "Cowriting"
},
{
"command": "cowriting.applyAgentEdit",
"title": "Apply Agent Edit (internal seam)",
@@ -115,10 +110,6 @@
{
"command": "cowriting.pinDiffBaseline",
"when": "false"
},
{
"command": "cowriting.toggleAttribution",
"when": "false"
}
],
"editor/context": [
-11
View File
@@ -52,7 +52,6 @@ export class AttributionController implements vscode.Disposable {
private readonly pending = new PendingEditRegistry();
private readonly statusItem = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Right, 90);
private readonly output = vscode.window.createOutputChannel("Cowriting Attribution");
private visible = true;
/**
* F6 (§6.2/§6.4): the single machine-landing signal. Fired after a real
@@ -70,7 +69,6 @@ export class AttributionController implements vscode.Disposable {
) {
this.disposables.push(this.statusItem, this.output, this.applyEmitter);
this.disposables.push(
vscode.commands.registerCommand("cowriting.toggleAttribution", () => this.toggle()),
vscode.workspace.onDidChangeTextDocument((e) => this.onDidChange(e)),
vscode.workspace.onDidSaveTextDocument((d) => this.onDidSave(d)),
vscode.window.onDidChangeActiveTextEditor(() => this.renderActive()),
@@ -330,11 +328,6 @@ export class AttributionController implements vscode.Disposable {
// ---- PUC-5: rendering ----------------------------------------------------------------
private toggle(): void {
this.visible = !this.visible;
this.renderActive();
}
private renderActive(): void {
const editor = vscode.window.activeTextEditor;
if (editor) this.render(editor.document);
@@ -390,10 +383,6 @@ export class AttributionController implements vscode.Disposable {
author: s.authorKind === "agent" ? "claude" : "human",
}));
}
isVisible(): boolean {
return this.visible;
}
dispose(): void {
for (const d of this.disposables) d.dispose();
}