61,051 questions
1
vote
1
answer
52
views
Compilation error - #include errors in visual studio code
I'm trying to compile C files in Visual Studio Code but I'm getting this errors:
"#include errors detected. Please update your includePath. Squiggles are disabled for this translation unit "
...
-1
votes
0
answers
35
views
responseBody.getReader is not a function in VS Code Copilot Chat model provider extension
I am using a VS Code extension that adds DeepSeek V4 as a model provider for GitHub Copilot Chat.
When I select the DeepSeek V4 model in GitHub Copilot Chat and send a simple message, the request ...
0
votes
0
answers
52
views
How can I find the scopes for UI in VS Code?
I've been making my own theme in a .json file,
and I've been having trouble finding out how to target different UI elements in the window in VS Code.
For example, I don't know what scope targets the &...
Advice
0
votes
0
replies
40
views
Open Workspace file in Visual Studio Code Agents app?
Does anyone know if there is a way to open a .code-workspace file in the vs code insiders agents companion app? seems weird that it would ask you to open a workspace but then not actually support ...
1
vote
1
answer
145
views
VS Code Branch Switching (post worktree vscode update)
TL;DR:
The VS Code Git: Checkout to... command used to let me directly select a branch or tag. Now it first forces me to choose a repository, and only then the branch.
Is there a way to restore the ...
Tooling
0
votes
0
replies
115
views
How to make markdown ` ` double space really visible in IDEA/VS Code?
How to make markdown double space really visible while editing .md files ?
Yes, it is possible to enable something called "show white spaces" for both IDEA and VSCode,
but that will ...
2
votes
1
answer
583
views
Workaround for VS Code Flake8 linting failed with KeyError
I have been using the Flake8 VS Code extension for Python linting with no problems.
Recently, with VS Code version 1.118.1 and Flake8 version 2026.4.0, I get the following error notification when ...
-3
votes
1
answer
180
views
Intelephense in VS Code doesn't recognize a php variable from included file
I'm using the extension PHP intelephense for Visual Studio Code.
$root = $_SERVER['DOCUMENT_ROOT'];
include($root . '/sqlcon.php');
$gettextquery = mysqli_query($con, "SELECT * FROM `pics` WHERE ...
0
votes
0
answers
58
views
Making VSCode + stack respect .ghcup/env
I'm using latest VSCode with Haskell extension. There's a trivial (?) problem of toolchain (GHC, HLS, stack, cabal) being mismatched depending on what process is used to start VSCode (Debian + KDE ...
-1
votes
1
answer
96
views
Disable VSCode proxy [closed]
Is there any way to force VSCode not to use any HTTP proxy?
Advice
3
votes
6
replies
90
views
I need to column "lock" in VSCODE
I am using VSCODE in order to write cobol. We are being pressured to move off of our legacy software. That being said, this one thing has infuriated me to no end: Cobol Tags.
I have done extensive ...
-2
votes
1
answer
89
views
How to set Release mode directly in CMakeLists.txt / CMakePresets.json? "Visual Studio 18 2026", VSCode, vcpkg, build example lib "google/benchmark" [duplicate]
What would be the way to specify the compilation in Release mode when working with CMake, ideally in "CMakeLists.txt", but if not then in "CMakePresets.json".
Looking for a ...
-2
votes
0
answers
106
views
VS Code theme changed, text colors disappeared [closed]
After the newest VS Code update, my style automatically changed and many things that were labelled with their own text color aren't any more. I relied on the text colors to identify what something was ...
0
votes
0
answers
75
views
Line magic interferes with linting in VSCode
Consider the following line magic snippet in a Jupyter Notebook in VSCode, using the Microsoft Jupyter extension:
You see that my_result is reported as undefined by PyLance:
The code runs perfectly ...
0
votes
1
answer
71
views
How to auto-restart spring boot in visual-studio code
After making code changes, I have to ctrl-c then run mvn spring-boot:run. Is that correct? Is there an easier way than killing and re-starting spring repeatedly whenever I make code changes?