We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents abfe3b7 + cd1fd63 commit c2c3f64Copy full SHA for c2c3f64
denops/fall/processor/match.ts
@@ -50,7 +50,9 @@ export class MatchProcessor<T extends Detail> implements Disposable {
50
this.#chunkInterval = options.chunkInterval ?? CHUNK_INTERVAL;
51
this.#incremental = options.incremental ?? false;
52
this.#items = options.initialItems?.slice() ?? [];
53
- this.#previousQuery = options.initialQuery;
+ // Do not set initialQuery to #previousQuery to ensure the first matching
54
+ // is executed when the initial query is provided via -input= option.
55
+ this.#previousQuery = undefined;
56
}
57
58
get #matcher(): Matcher<T> {
0 commit comments