fix search/replace

This commit is contained in:
Chris Wanstrath 2025-12-02 15:58:50 -08:00
parent b0ad0a0768
commit 4c91ef57b9

View File

@ -245,7 +245,7 @@ const commandShapes: CommandShape[] = [
] as const
let commandSource = () => commandShapes
export const setCommandSource = (do: () => CommandShape[]) => {
export const setCommandSource = (fn: () => CommandShape[]) => {
commandSource = fn
}