All Questions
Tagged with vscode or visual-studio-code
61,256 questions
Tooling
0
votes
1
replies
28
views
How to have VS-code open latex project folder and pdf
I run a mac, and currently I'm set up so that when I double click on a main.tex file it opens in VS code. This is nice, but most of the time, I'd prefer it to open the entire folder in which the main....
0
votes
1
answer
38
views
Foreground text is dull and difficult to read on VSCodium/VSCode [closed]
I recently installed a fresh Arch build with the XFCE4 Desktop Environment on a laptop and installed VS Codium. I've used VS Code on the same device but on Windows earlier and on other devices without ...
-3
votes
1
answer
48
views
How do you follow from editor -> outline? (highlight in outline) [closed]
Right now when I click on any tag in outline view I am moved to this tag in editor view.
How to do it vice versa so when navigating in editor outline gets highlighted with current tag?
1
vote
0
answers
35
views
How can I disable some MCP servers globally?
I am using GitHub Copilot in Visual Studio Code.
Some extensions (GitKraken, ...) sneakily add MCP servers. Whenever I open a new Visual Studio Code window in a new project, all these MCP servers are ...
0
votes
0
answers
40
views
Cant connect xdebug to vscode
I'm trying to use xdebug in vscode. It seems xdebug is running but I can't get vscode to hit on the breakpoints I set. In the logfile (see below) it shows some kind of mismatch between files in which ...
0
votes
1
answer
27
views
Go To Type Definition function in Visual Studio Code
Is Visual Studio Code has tooltip Go To Type Definition function like Visual Studio or Rider, when you can go to definition by mouse clicking?
VS 2022 has option "Enable mouse click to perform Go ...
0
votes
2
answers
58
views
Angular syntax, VS Code and editorConfig issue
When I format the page in VS Code, @if and @else, for example, are not formatted properly. That is, we get something like this:
<div>
@if {
<div>something</div>
}
@...
0
votes
0
answers
60
views
R Workspace not appearing on VSCode R Extension
I am using VSCode with the R extension. I followed the installation guides in: https://code.visualstudio.com/docs/languages/r
This used to work well, but all of a sudden, the R interactive space does ...
2
votes
0
answers
47
views
GitHub Copilot in VS Code triggers a KeyboardInterrupt error when opening PowerShell with conda environment
I'm encountering an issue when using GitHub Copilot in VS Code.
After Copilot agent modifies a file, it suggests a PowerShell command and asks whether I want it to run the command for me. When I click ...
0
votes
2
answers
135
views
Why do I get a fatal JSON parse error when trying to install or load any extension in Visual Studio Code?
I have Visual Studio Code on a desktop running Windows 11, and whenever I try to install any extension, or even just try to list extensions, I get the following error:
[error] [Window] Expected ',' or ...
-3
votes
0
answers
58
views
How do I undo clearing the debug console in VS Code?
I accidentally cleared my debug console in Visual Studio Code by pressing the "Clear Console" button next to the search button.
Is there any way to undo clearing the console? Alternatively, ...
2
votes
0
answers
48
views
VS Code debugger API
I would like to know if there exists any way to interact programmatically with the vs code debugger during a session.
Python would be ideal, but JS/TS could also work. For the langages being debugged (...
0
votes
0
answers
49
views
VS Code hangs at Pytest discovery
I'm having issues with getting VS Code to integrate Pytest discovery, where it just hangs indefinitely on discovering tests for the workspace. I've tried about every solution, and I have a minimal ...
0
votes
0
answers
70
views
How configure GitHub Copilot in VS Code to work with Azure OpenAI/Azure AI Foundry
I am trying to set up GitHub Copilot Chat with an Azure hosted OpenAI model.
But I am struggling to find an authorative answer on what to enter for the endpoint.
Some blog posts suggest: https://xxx....
1
vote
0
answers
62
views
VSCode Typescript Intellisense not suggesting methods from dynamic type or interface
I am writing an event system, comprised of EventTypes and EventListeners. I want to require that the listener methods implemented by an EventListener follow a certain expected structure. For example, ...