vscode-cpptools icon indicating copy to clipboard operation
vscode-cpptools copied to clipboard

Official repository for the Microsoft C/C++ extension for VS Code.

Results 688 vscode-cpptools issues
Sort by recently updated
recently updated
newest added

Fixes #12575 This stops the use of the proposed deprecated API and uses the newer, released `TerminalShellExecution` support.

```cpp #include using namespace std; string replace(string line, string o, string n) { auto i = line.find(o); if (i != string::npos) { return line.replace(i, o.length(), n); } return line; }...

debugger
Feature Request

### Feature Request For example Raylib headers have descriptions of functions on same line as declarations. ![image](https://github.com/microsoft/vscode-cpptools/assets/78706300/bf1476f8-852a-4d12-8e19-d4f2acb69aba) But instead hover hints displays only comments that are above declaration. ![image](https://github.com/microsoft/vscode-cpptools/assets/78706300/f4c4b6e8-9b5d-4af6-9f5d-1d00a0e65331) Same...

bug
Language Service
Visual Studio
more votes needed

### Feature Request Consider following: #if SOMETHING /* some code */ #ENDIF I'd like to be able to change how SOMETHING is defined for purpose of Intellisense parsing via right-click...

Feature Request
help wanted
Feature: Configuration

Type: Bug Step 0: Set your "C Standard" to at least `c23` (I have it on `gnu23`). Step 1: Declare a sized enum: ```c enum: uint32_t { foo = 0xDEADBEEF,...

bug
Language Service
parser
Visual Studio

Use code like `const long double ldvar = 10.0l;` and hover over the long double const variable or literal and it shows an invalid value. It works with 1.25.3. Reproed...

bug
Language Service
regression
Visual Studio

### Environment - OS and Version: Windows 11 - VS Code Version: 1.74.0-insider - C/C++ Extension Version: v1.13.3 I'm trying to use vscode with C++ projects originally created in Visual...

Language Service
Feature Request
Feature: Configuration

### Feature Request Hello, I would like to request a feature similar to "javascript/typescript.suggest.completeFunctionCalls", where upon calling a method, the parenthesis are inserted automatically and the caret is placed in...

Feature Request
more info needed
Feature: Auto-complete

### Environment - OS and version: Alma Linux 8 - VS Code: 1.99.3 - C/C++ extension: 1.25.3 - C/C++ extension pack: 1.3.1 - GDB version: 14.2 ### Bug Summary and...

bug
debugger
help wanted

### Environment - OS and Version: Windows 11 - VS Code Version: Version: 1.100.2 - C/C++ Extension Version: Version 1.25.3: April 28, 2025 - If using SSH remote, specify OS...

Language Service
Feature: Auto-complete
enhancement