Skip to content

Commit 32138c2

Browse files
committed
feat: increase default threshold to 100,000
The number of helptag seems more than 10,000 so it should be larger than that.
1 parent fc8d57d commit 32138c2

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

1313
export type CollectProcessorOptions = {

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

1515
export type MatchProcessorOptions = {

0 commit comments

Comments
 (0)