Skip to content

Commit fb615bc

Browse files
authored
Merge pull request #31 from vim-fall/decrease-threshold
feat: Decrease default threshold to 10,000
2 parents 6d491d5 + 4ad5cd4 commit fb615bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

denops/fall/processor/collect.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type { CollectParams, Source } from "jsr:@vim-fall/core@^0.3.0/source";
77
import { Chunker } from "../lib/chunker.ts";
88
import { dispatch } from "../event.ts";
99

10-
const THRESHOLD = 100000;
10+
const THRESHOLD = 10000;
1111
const CHUNK_SIZE = 1000;
1212

1313
export type CollectProcessorOptions = {

denops/fall/processor/match.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { ItemBelt } from "../lib/item_belt.ts";
99
import { dispatch } from "../event.ts";
1010

1111
const INTERVAL = 0;
12-
const THRESHOLD = 100000;
12+
const THRESHOLD = 10000;
1313
const CHUNK_SIZE = 1000;
1414

1515
export type MatchProcessorOptions = {

0 commit comments

Comments
 (0)