Support custom QuickPick filter logic
See original GitHub issueCurrently the QuickPick
filter logic supports wild cards and which parts of the item to search in but not things like switched up word order or regex. An issue was opened for one of my extensions asking for a more lenient search, which does not seem possible with the current API.
Rather than adding a lot of options specifying exactly how the filtering behaves it might be easier and more sensible to provide a custom filter callback and maybe a filter delay option. The delay would trigger the filter logic only n
milliseconds after the user has last typed, in case the filter logic is complex or there are many items (- i have 33k -) causing long filter times.
Suggested interface for the options:
interface QuickPickOptions {
// ...
/**
* Time in milliseconds to wait after last user input
* before filtering the list.
* Default: 0
*/
filterDelay: number,
/**
* Optional filter callback which overrides the default filter
* behavior. The callback is called for every item in the list
* with the current user input.
* Default: undefined
*/
filterCallback?: (item: QuickPickItem | string, filterText: string) => boolean,
}
I had a look at handling a quick pick “manually” by using createQuickPick
but it also filters completely automatically.
Maybe QuickPickOptions
could also be made generic. It already has the onDidSelectItem
property which uses a union for the item type instead of a generic. Then functions like showQuickPick<T extends QuickPickItem>
could propagate their generic type to the options argument.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:10
- Comments:5 (1 by maintainers)
Top GitHub Comments
Setting
alwaysShow: true
on the items andsortByLabel: false
(#73904 proposed API) on the QuickPick allows you to control the list and sorting. Only the highlighting cannot be controlled yet, that is tracked with #83424.Keeping this issue open as its own proposal until the issues are resolved.
@brunnerh if we could disable
matchOnLabel
(see #83425) (as well asmatchOnDescription
andmatchOnDetail
which we already have you could just disable matching and implement the filtering yourself before you put theQuickPickItem
s into theQuickPick
. Coupled with custom highlighting (#83424) you would be able to do whatever you like.