61,264 questions
2
votes
0
answers
100
views
How to Move References to Subfolder and Not Break References
I have a number of DLLs I am referencing in my C# program. When I build the program these DLLs all get copied to the root output folder.
In organizational need, I would like to get these DLLs put into ...
0
votes
0
answers
49
views
Windows user profile folder blocked in Visual Studio Code
When using File > Open Folder and selecting my profile folder in C:\users\ (or any subfolder below), I receive the message "Can't open this location: We can't open 'profile name'. To help keep ...
0
votes
0
answers
24
views
The VS Code Panel which was earlier part of terminal now pops out every time you try to move the terminal around, how to revert to previous state
The latest changes to vs-code have made it extremely annoying, it keeps popping the panel outside the terminal and takes over editor area every time one tries to move the terminal around, it used to ...
0
votes
1
answer
84
views
code completion of Espressif plugin in VsCode
Is it possible that VSCode code completion only offers those elements in the list that I have already used, but does not read the header files of glibc and the given environment? I use the Espressif ...
-1
votes
1
answer
128
views
How do I configure the VS Code C_Cpp extension's auto insertion of linebreaks before braces?
VS Code is auto inserting linebreaks before my curly braces. I have always used K&R style braces, and would like to use that style for C++ inside of VS Code. Does anyone know how I can configure ...
1
vote
2
answers
177
views
How can I create a Python venv within a Bash script and then activate it immediately, all from a VS Code profile's settings.json?
I have this profile settings.json:
{
"terminal.integrated.profiles.osx": {
"python-venv": {
"path": "/opt/homebrew/bin/bash",
...
0
votes
0
answers
49
views
Handling Java inter-projects dependencies in multi-root workspace
I'm testing Theia as an Eclipse replacement IDE for my Java projects and am trying to replicate the familiar project structure: a workspace directory containing a folder per project, each project ...
1
vote
1
answer
95
views
Is conditional bracket pairing possible?
In SystemVerilog is the "property" construct:
property <name>
<body>
endproperty
This can then be instantiated as:
assert property(<name>);
In the language extension ...
0
votes
1
answer
114
views
VS Code Breakpoints not working while debugging Azure Function
I'm using VS Code on Windows 11, to debug my Python Azure Functions locally
When running the debugger I am prompted with the following (https://i.sstatic.net/4a65Y85L.png)
When I select the option,'...
0
votes
0
answers
229
views
VScode Github Copilot connection issues on WSL
I have been having issues with copilot in VScode, regardless of which model is used.
The issues arise especially in agent/edit mode.
The error message im getting in the output logs:
...
2
votes
1
answer
263
views
How can I remove "Generate Commit Message" and other AI features in 1.102.0 and onward?
VS Code added a button to AI-generate commit messages. I don't want nor need this feature. Is there any way to remove the button from the UI entirely? I have already chosen "Hide Copilot" in ...
1
vote
1
answer
102
views
Disable color decorators for all files except CSS
When I write a hex color code in a CSS file, a square appears to the left, filled with the hex code's color. For example, if I type "#ff0000", a red square appears to the left. This feature ...
0
votes
1
answer
59
views
How can I enable context-aware indentation when pasting Python code in VSCode?
I'm trying to replicate a feature from PyCharm in Visual Studio Code and running into trouble.
In PyCharm, when I copy a block of Python code and paste it inside a function, class, or loop, the IDE ...
2
votes
1
answer
84
views
Why does VS Code launch in "URL Handler" mode on my Linux system?
Whenever I click the VS Code icon to start a VS Code session, VS Code launches in a "Visual Studio Code - URL Handler" window. Why is that? How can this be fixed?
Details: AEON Linux, VS ...
2
votes
0
answers
73
views
VSCode typescript doesn't show error that tsc does
I have a monorepo with typescript project references and npm workspaces and I have a problem with mixed JS/TS code - while VSCode reports "all good" in a TS file, running tsc -b against the ...
0
votes
1
answer
67
views
VS Code won't make import suggestions for my Python library
I have made a Python library whose tree directory structure looks like
lorentz_enrichment
├── __init__.py
│ └── lorentz_enricher.cpython-312.pyc
├── configs
│ ├── __init__.py
│ │ ├── logger....
0
votes
0
answers
48
views
Is it possible to access USB video cameras from the VSCode extension?
I would like to have the image from video camera (usb web-cameras) built-in into VSCode.
I tried to create an extension using webview-view-sample, but it looks like I have a permission issue when ...
-1
votes
1
answer
234
views
In MacOS, why does IPv6 routing fail in a VSCode terminal but work in a normal terminal?
I initially thought this was a python issue but in fact it's more generic.
In a normal MacOS terminal (Tahoe 26.0, Apple silicon):
% ping6 2a02:8010:64e4::1183
PING6(56=40+8+8 bytes)...
0
votes
0
answers
34
views
Open OSGeo4W Shell in VSCode
I would like to add the OSGeo4W shell to the list of terminal options (currently includes R, Python, powershell, etc...) in VS Code. How can add that here?
Search results suggest running VSCode from ...
0
votes
1
answer
96
views
Black screen on phone when using debug
When I launch my flutter project via interface buttons (vscode and android studio) or shortcuts (f5/shift+f10), the process does not go further
Flutter: Installing build\app\outputs\flutter-apk\app-...
1
vote
0
answers
64
views
VSCode multiline pasting in integrated terminal powershell
when I try to paste anything multiline with tabs it gets mangled in the VSCode integrated terminal while it works fine if I use an external powershell, for example:
/game/systems/deterministic_rng.lua
...
0
votes
0
answers
34
views
VS Code Live server doesnt live reload on chrome only
I've reinstalled VS code after a windows reinstall and live reload seized to work on chrome . I've tried it on Edge and it works fine but it stopped working on chrome . i've to press refresh for ...
0
votes
0
answers
113
views
Next.js with VS Code dev container
I would like to use VS Code dev container for developing Next.js application.
Therefore I do these steps in VS Code:
New Dev Container,
After creating container I move out .devcontainer and .github ...
1
vote
1
answer
63
views
VS Code jump to next pattern
I'm learning to use Positron, an IDE built on Code OSS (the same foundation as VS Code). I want to be able to create a keybinding that jumps (without user interaction) to the next occurrence of a ...
0
votes
0
answers
30
views
How can I configure vscode-copilot-chat so that its suggestion text automatically wraps?
As shown in the picture, I have a long line, and copilot detects an error on this line. It gives a line of suggesstion text, but to long to display on a screen line. However, this line does not wrap ...