Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/client.ts')
| -rw-r--r-- | editors/code/src/client.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editors/code/src/client.ts b/editors/code/src/client.ts index 8a2dea6b35..a8d57a0e68 100644 --- a/editors/code/src/client.ts +++ b/editors/code/src/client.ts @@ -261,6 +261,10 @@ export async function createClient( } class ExperimentalFeatures implements lc.StaticFeature { + getState(): lc.FeatureState { + return { kind: "static" }; + } + fillClientCapabilities(capabilities: lc.ClientCapabilities): void { const caps: any = capabilities.experimental ?? {}; caps.snippetTextEdit = true; |