fix search/replace

This commit is contained in:
Chris Wanstrath 2025-12-02 15:58:50 -08:00
parent 5ad6125527
commit b2d298ec6f

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
}