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 f44f030 commit e5b0022Copy full SHA for e5b0022
src/install.ts
@@ -12,9 +12,6 @@ import * as config from './config';
12
// Returns the clangd path to be used, or null if clangd is not installed.
13
export async function activate(
14
context: ClangdContext, globalStoragePath: string): Promise<string|null> {
15
- // If the workspace overrides clangd.path, give the user a chance to bless it.
16
- await config.get<string>('path');
17
-
18
const ui = new UI(context, globalStoragePath);
19
context.subscriptions.push(vscode.commands.registerCommand(
20
'clangd.install', async () => common.installLatest(ui)));
0 commit comments