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 781b6a5 commit 8135198Copy full SHA for 8135198
src/extension.ts
@@ -19,11 +19,6 @@ function setContext(name, value) {
19
commands.executeCommand('setContext', name, value);
20
}
21
22
-// Increment version number whenever we want to make sure the user updates the
23
-// extension. cquery will emit an error notification if this does not match its
24
-// internal number.
25
-const VERSION = 3;
26
-
27
enum SymbolKind {
28
// lsSymbolKind
29
Unknown = 0,
@@ -198,8 +193,6 @@ export function activate(context: ExtensionContext) {
198
193
199
194
}));
200
195
201
- // Add version information to the config.
202
- clientConfig['clientVersion'] = VERSION
203
196
let args = ['--language-server'].concat(clientConfig['launchArgs']);
204
197
205
let env: any = {};
0 commit comments