Atempting to use registerTextSearchProvider #749
Answered
by
CGNonofr
StefanDBTLabs
asked this question in
Q&A
-
|
Trying to use I have set these values in package.json which is used as the manifest for the extention "enabledApiProposals": [
"textSearchProvider"
],
"contributes": {
"search": [
{
"scheme": "file"
}
],which I pass in to the import manifest from './package.json';
const { registerFileUrl, whenReady } = registerExtension(
manifest,
ExtensionHostKind.LocalProcess,
);are there other things i need to do to allow me to register and use this provider? |
Beta Was this translation helpful? Give feedback.
Answered by
CGNonofr
Dec 9, 2025
Replies: 1 comment 1 reply
-
|
Not every extension can declare and use api proposals, only:
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
StefanDBTLabs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not every extension can declare and use api proposals, only:
{ system: true }in the last parameter ofregisterExtensionproductConfiguration, which can contain someextensionEnabledApiProposals