diff --git a/denops/fall/processor/collect.ts b/denops/fall/processor/collect.ts index 23dacd2..7044799 100644 --- a/denops/fall/processor/collect.ts +++ b/denops/fall/processor/collect.ts @@ -7,7 +7,7 @@ import type { CollectParams, Source } from "jsr:@vim-fall/core@^0.3.0/source"; import { Chunker } from "../lib/chunker.ts"; import { dispatch } from "../event.ts"; -const THRESHOLD = 100000; +const THRESHOLD = 10000; const CHUNK_SIZE = 1000; export type CollectProcessorOptions = { diff --git a/denops/fall/processor/match.ts b/denops/fall/processor/match.ts index 2048076..8509e6a 100644 --- a/denops/fall/processor/match.ts +++ b/denops/fall/processor/match.ts @@ -9,7 +9,7 @@ import { ItemBelt } from "../lib/item_belt.ts"; import { dispatch } from "../event.ts"; const INTERVAL = 0; -const THRESHOLD = 100000; +const THRESHOLD = 10000; const CHUNK_SIZE = 1000; export type MatchProcessorOptions = {