Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion denops/fall/processor/collect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion denops/fall/processor/match.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down