From 6be390a07ea35ce03c772a8245bb4a7ec8b2e320 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Notin?= Date: Tue, 16 Dec 2025 09:44:33 +0100 Subject: [PATCH] Add ignoreLocation option to fuseMultiTerm config (#28557) --- src/resources/fuseMultiTerm.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/resources/fuseMultiTerm.ts b/src/resources/fuseMultiTerm.ts index 3c5ddb1b8a..d96dbbf396 100644 --- a/src/resources/fuseMultiTerm.ts +++ b/src/resources/fuseMultiTerm.ts @@ -17,6 +17,7 @@ const DEFAULT_OPTIONS: IFuseOptions = { isCaseSensitive: false, threshold: 0.3, minMatchCharLength: 2, + ignoreLocation: true, // don't care where the pattern is }; const DEFAULT_MIN_CHAR_LENGTH = 2;