F8: out-of-workspace authoring — hybrid sidecar persistence (#25) #26

Merged
benstull merged 8 commits from f8-out-of-workspace into main 2026-06-11 20:18:55 +00:00
Showing only changes of commit 94aaff71e9 - Show all commits
+2 -2
View File
@@ -8,12 +8,12 @@
*/
import * as vscode from "vscode";
import { SCHEMA_VERSION, isNewerMajor } from "./model";
import type { CoauthorStore } from "./store";
import type { SidecarStore } from "./sidecarStore";
export class VersionGuard {
private readonly warned = new Set<string>();
constructor(private readonly store: CoauthorStore) {}
constructor(private readonly store: SidecarStore) {}
/** True → skip the write path (and warn once per doc). */
isReadOnly(docPath: string): boolean {