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 3f22eeb commit 9396cd9Copy full SHA for 9396cd9
Extension/src/LanguageServer/extension.ts
@@ -254,7 +254,8 @@ export async function activate(): Promise<void> {
254
255
if (util.extensionContext) {
256
// lmTools wasn't stabilized until 1.95, but (as of October 2024)
257
- // cpptools can be installed on versions of VS Code as old as 1.67.
+ // cpptools can be installed on older versions of VS Code. See
258
+ // https://github.com/microsoft/vscode-cpptools/blob/main/Extension/package.json#L14
259
const version = util.getVsCodeVersion();
260
if (version[0] > 1 || (version[0] === 1 && version[1] >= 95)) {
261
const tool = vscode.lm.registerTool('cpptools-lmtool-configuration', new CppConfigurationLanguageModelTool());
0 commit comments