Skip to content

Commit c2fa4f8

Browse files
authored
Merge pull request #35 from vim-fall/increase-default-threshold
feat: increase default threshold to 100,000
2 parents c4f79d4 + 32138c2 commit c2fa4f8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

denops/fall/processor/collect.ts

Lines changed: 1 addition & 1 deletion
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 = 10000;
10+
const THRESHOLD = 100000;
1111
const CHUNK_SIZE = 1000;
1212
const CHUNK_INTERVAL = 100;
1313

denops/fall/processor/match.ts

Lines changed: 1 addition & 1 deletion
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 = 10000;
12+
const THRESHOLD = 100000;
1313
const CHUNK_SIZE = 1000;
1414
const CHUNK_INTERVAL = 100;
1515

0 commit comments

Comments
 (0)