diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-12-18 12:38:39 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-18 12:38:39 -0500 |
commit | 0e52a1f509155673d26a2a1ad00987389a05fea6 (patch) | |
tree | 726344c15a28e6d7a43be6df34fbe201d6fee018 /ext/data/schemas | |
parent | 851014a404c6db2b07699382726fd10d028f4828 (diff) |
Scanning wildcards (#2042)
* Add scanning.matchTypePrefix option
* Update TextScanner to use matchTypePrefix option
* Add setting
* Update warning
Diffstat (limited to 'ext/data/schemas')
-rw-r--r-- | ext/data/schemas/options-schema.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ext/data/schemas/options-schema.json b/ext/data/schemas/options-schema.json index 2dd3981d..d15b533b 100644 --- a/ext/data/schemas/options-schema.json +++ b/ext/data/schemas/options-schema.json @@ -435,7 +435,8 @@ "enableOnPopupExpressions", "enableOnSearchPage", "enableSearchTags", - "layoutAwareScan" + "layoutAwareScan", + "matchTypePrefix" ], "properties": { "inputs": { @@ -658,6 +659,10 @@ "layoutAwareScan": { "type": "boolean", "default": false + }, + "matchTypePrefix": { + "type": "boolean", + "default": false } } }, |