We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 368e0bb commit 4267b11Copy full SHA for 4267b11
editors/code/src/client.ts
@@ -102,24 +102,6 @@ export async function createClient(
102
}
103
},
104
105
- async provideInlayHints(document, viewPort, token, next) {
106
- const inlays = await next(document, viewPort, token);
107
- if (!inlays) {
108
- return inlays;
109
- }
110
- // U+200C is a zero-width non-joiner to prevent the editor from forming a ligature
111
- // between code and hints
112
- for (const inlay of inlays) {
113
- if (typeof inlay.label === "string") {
114
- inlay.label = `\u{200c}${inlay.label}\u{200c}`;
115
- } else if (Array.isArray(inlay.label)) {
116
- for (const it of inlay.label) {
117
- it.value = `\u{200c}${it.value}\u{200c}`;
118
119
120
121
122
- },
123
async handleDiagnostics(
124
uri: vscode.Uri,
125
diagnosticList: vscode.Diagnostic[],
0 commit comments