61,264 questions
-4
votes
0
answers
24
views
Is the VSCode WSL extension open source?
Extension: WSL
I have a use case that requires modifying the WSL VSCode extension. The extension page takes you to a GH repo for vscode-remote-release, but the extension code isn't in there. I've look ...
0
votes
1
answer
22
views
How to create a div in the active editor tab of VS Code via extension?
I want to create a div that is always placed on the top right of the current active editor window of VS Code via an extension. Ideally, the div is show even when the user change tab.
I tried to find a ...
0
votes
0
answers
21
views
Spring Boot Dashboard in VS Code isn't displaying one of the project's modules
I'm setting up the environment for a project of the company I work for. It's a multi module backend runing Spring Boot. I didn't have problems with most of the setup, but one of the project's modules, ...
-1
votes
0
answers
13
views
Set up server launch configurations in vscode
I am trying to move from eclipse to vscode.
I want to set up various Tomcat server configurations so that I can run my web app in different environments.
I have installed Tomcat to c:\servers\tomcat. ...
-1
votes
0
answers
56
views
VS Code fails to run .NET, even if I installed it
When I open a workspace in VS Code, I get this error message notification on the bottom right corner :
Failed to run .NET runtime. You may be missing key Linux libraries. Install them now?
Source: ....
-1
votes
0
answers
43
views
VS code treats the address C://php.exe as h:/web/c:/php.exe
I installed the PHP Server extension for VS Code and added two lines to settings.json:
"php.validate.executablePath": "С://php-server//php.exe",
"phpserver.phpPath": &...
-4
votes
1
answer
36
views
How do I set a font for VS code UI, if the fonts style in the metadata is "Medium" using Fonted? [closed]
The font I have is Cookie Monster by Des.
I have tried both Fonted and APC.
I also tried to set the code font, but it only allows me to do 'italic', 'bold', and 'underline', not Medium. (Medium is the ...
-5
votes
0
answers
106
views
How to have vs code detect deleted typescript files still referenced in the project? [duplicate]
I have a nx monorepo with a lib - typescript
In the lib there is a directory with subdirectories per feature.
I don't need one of the types anymore - so I deleted the file inside which the type was ...
0
votes
0
answers
44
views
WPF "View Source" in Live Visual Tree stopped working - can't open XAML or code-behind
I'm learning how the back end and front end work together by reviewing WPF (Window Presentation Foundation) code.
The project runs locally on my machine. I copied it from my team's shared folder.
My ...
-3
votes
0
answers
40
views
How to set the default opening pages of VScode to be a welcome page or blank one?
Description
I always get annoyed by the first page of vscode with the following cli.js file on my windows 11 Operation System:
C:\Users\Kasmir\AppData\Local\Programs\Microsoft VS Code\resources\app\...
10
votes
0
answers
231
views
Not displaying DataFrame's name in Data Wrangler extension of VSCode, displaying "Data grid"
It is a while that I am using Data Wrangler extension in VS Code; it is very useful for analyzing datasets and filtering some columns to see the features. When I opened a dataframe in it, it used to ...
-1
votes
1
answer
44
views
How to remove "Powershell" column from Secondary Side Bar in VS Code?
This morning VS Code updated itself to v1.106.0. When I open a terminal window (Ctrl + ') I now see an additional column titled Powershell.
How can I hide this and go back to just having one column ...
0
votes
2
answers
53
views
python: vscode doesnt highlight direct import from module
When I attempt to import a module from a local package (from core import config), VSCode's syntax highlighting isn't working. When hovering over config, it shows "config: Any" (the editor ...
0
votes
1
answer
87
views
Tabs don't hide if single terminal is open in VS Code 1.106
I accidentally messed up something in the settings, and now the list of tabs doesn't disappear, even if only one terminal is open:
I need this view, without tabs. And also, I want the button for ...
0
votes
0
answers
58
views
.Flutter suddenly doesnt recognize Widget as a type
Flutter doesn't recognize Widget as type now. Material.dart is imported everywhere but still it still doesn't recognize it..It suddenly happened while i was working on the project.Now other projects ...
0
votes
0
answers
11
views
Tailwind Autocomplete Works Only in One Phoenix Project in VS Code
I recently joined my university’s CS group and started learning Tailwind using the Phoenix framework. To practice, I cloned a repository of an ongoing project. After a few days, I decided to create a ...
Advice
0
votes
2
replies
33
views
Use backticks inside backticks in JSdoc / PHPdoc etc
We can document code with backticks in JSdoc to see it styled like interpreted markdown when hovering over the definition:
/**
* This function is similar to `someFunction(foo)`
*/
function bar() { .....
-1
votes
1
answer
38
views
Natural sort in File Explorer
In the File Explorer of Visual Studio Code, my files are sorted in alphabetical order, with 10, 11, 12 coming before 1, 2, 3.
I would like them to be sorted in natural order, with 10, 11 and 12 ...
0
votes
0
answers
97
views
Buffer not recognized in TypeScript with Playwright and module: "nodenext"
I am using TypeScript 5+ with Playwright and module: "nodenext" in my tsconfig.json:
{
// Visit https://aka.ms/tsconfig to read more about this file
"compilerOptions": {
// ...
0
votes
0
answers
37
views
How to make repeatable chords in VSCode
I have a key binding such as alt+s alt+u. It works when i hold down both keys alt and s, then just press u. But if I press u again, it doesn't repeat; i must release alt and s, then hold them down ...
-3
votes
0
answers
104
views
Unable to run SFML in VSCode
I was following this tutorial.
It was going fine till 6:16. I installed the latest stable version of SFML (3.0.2) and mingw64 from the SFML website, specifically the files called "WinLibs UCRT 14....
1
vote
1
answer
84
views
VS Code disable suggestion to replace C# var keyword with explicit type [closed]
While writing some C# I noticed that the editor is suggesting to replace all my var statements with the actual type. How do I turn this off?
I've gone through the all the options for the text editor ...
3
votes
3
answers
304
views
How can I make some MCP servers disabled by default in new workspaces?
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
109
views
jdk-25, main is never used
I am using jdk-25 with VSCode, and Maven for Workspace, and I want to use the new syntax but I can not get rid of the error code:
"main is never used"
My HelloWorld code is:
package org....
-2
votes
1
answer
78
views
How to turn off the autocomplete suggestions in VSCode terminal (powershell)? [duplicate]
Whenever I type in the VSCode terminal, the autocomplete suggestion pops up right next to what I type and it's kinda annoying.
This feature appeared just today for me, and I tried checking JSON ...