From 46a76dfd66be3e7fdf00d70a1825ccfc5cf91643 Mon Sep 17 00:00:00 2001 From: Ben McMorran Date: Mon, 15 Jun 2026 21:21:32 -0700 Subject: [PATCH 1/2] Add cpp-language-server plugin configuration This plugin hosts the Microsoft C++ Language Server, which is an LSP server for C++ based on the same engine used for C++ in VS Code and Visual Studio. See this blog post for the initial announcement https://devblogs.microsoft.com/cppblog/c-code-intelligence-for-github-copilot-cli-preview/ We're aiming to make the language server easier to install by providing it as a plugin and available in built-in marketplaces. --- .github/plugin/marketplace.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/plugin/marketplace.json b/.github/plugin/marketplace.json index 8cfff43..9df9178 100644 --- a/.github/plugin/marketplace.json +++ b/.github/plugin/marketplace.json @@ -210,6 +210,26 @@ "developer" ], "license": "MIT" + }, + { + "name": "cpp-language-server", + "source": { + "source": "github", + "repo": "microsoft/cpp-language-server", + "path": "plugins/cpp-language-server" + }, + "description": "Navigate and interact with your C++ code using the Microsoft C++ Language Server.", + "version": "0.1.0", + "repository": "https://github.com/microsoft/cpp-language-server", + "keywords": [ + "cpp", + "c++", + "refactoring", + "code-analysis", + "lsp", + "language-server" + ], + "license": "See EULA/LICENSE.txt in @microsoft/cpp-language-server NPM package" } ] } From 2ad46bb46b3f73c3a51f18ccb73adf480c97204a Mon Sep 17 00:00:00 2001 From: Ben McMorran Date: Mon, 15 Jun 2026 21:26:09 -0700 Subject: [PATCH 2/2] Add Microsoft C++ Language Server link to README Added link to Microsoft C++ Language Server in README. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index ee90ec7..76906d5 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,8 @@ This marketplace also references plugins hosted in other repositories: - **[Microsoft Skills for Fabric](https://github.com/microsoft/skills-for-fabric)** — `fabric-skills`, `fabric-authoring`, `fabric-consumption`, `fabric-operations`, `powerbi-authoring`. Skills and agents for Microsoft Fabric (Lakehouse, Warehouse, Power BI, Eventhouse, Eventstream, Dataflows, Spark). +- **[Microsoft C++ Language Server](https://github.com/microsoft/cpp-language-server) - Navigate and interact with your C++ code. + ## 🤝 Contributing We'd love your contributions! Please read our [Contributing Guide](CONTRIBUTING.md) for details on how to submit pull requests.