Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 871e762

Browse files
committed
Remove proprietary inlay hinter
1 parent bfd69d2 commit 871e762

File tree

3 files changed

+1
-203
lines changed

3 files changed

+1
-203
lines changed

package.json

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,7 @@
7373
}
7474
}
7575
},
76-
"colors": [
77-
{
78-
"id": "syntaxTree.inlayHints",
79-
"description": "Text color for the inserted inlay hints",
80-
"defaults": {
81-
"dark": "#707070",
82-
"light": "#999999",
83-
"highContrast": "foreground"
84-
}
85-
}
86-
]
76+
"colors": []
8777
},
8878
"scripts": {
8979
"compile": "tsc -p ./",

src/InlayHints.ts

Lines changed: 0 additions & 190 deletions
This file was deleted.

src/extension.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { LanguageClient, ServerOptions } from "vscode-languageclient/node";
55
import { promisify } from "util";
66
import { exec } from "child_process";
77

8-
import InlayHints from "./InlayHints";
98
import Visualize from "./Visualize";
109

1110
const promiseExec = promisify(exec);
@@ -121,7 +120,6 @@ export async function activate(context: ExtensionContext) {
121120
// implements Disposable so that they clean up their own resources.
122121
visualizer = new Visualize(languageClient, outputChannel);
123122
context.subscriptions.push(
124-
new InlayHints(languageClient, outputChannel),
125123
visualizer
126124
);
127125
}

0 commit comments

Comments
 (0)