From b2d298ec6fb920751d3b6ffe4f40d9cd9c249ffd Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Tue, 2 Dec 2025 15:58:50 -0800 Subject: [PATCH] fix search/replace --- src/editor/commands.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/commands.ts b/src/editor/commands.ts index 2021954..021aefb 100644 --- a/src/editor/commands.ts +++ b/src/editor/commands.ts @@ -245,7 +245,7 @@ const commandShapes: CommandShape[] = [ ] as const let commandSource = () => commandShapes -export const setCommandSource = (do: () => CommandShape[]) => { +export const setCommandSource = (fn: () => CommandShape[]) => { commandSource = fn }