All Questions
Tagged with vscode or visual-studio-code
61,082 questions
Advice
0
votes
1
replies
31
views
How To Avoid TS Issue in VS Code?
Cannot find module '@/components/ui/button' or its corresponding type declarations. how to rmove this warning which extension or cli to install/run
enter image description here
any cli command aur vs ...
Advice
0
votes
0
replies
33
views
Centered/Floating search bar in Visual Studio Code
Does anyone know the settings to set search bar in visual studio code to centered/floating like in the picture? tbh, i don't remember how i change my settings to be like that and when i synced my old ...
-2
votes
0
answers
48
views
How to send terminal errors directly to GitHub Copilot Chat in VS Code without manual copy-paste
I am doing little bit of vibe coding in Python. I am using VS Code IDE with Github Copilot chat. When any error comes after running a code, i copy it from terminal and paste it to chat window. Is ...
0
votes
0
answers
24
views
VS Code Extension runs but command not showing in Command Palette and no popup appears
I am currently developing a VS Code extension. The extension seems to run without any errors, but I am facing the following issues:
No popup window appears when I execute the extension.
When I press ...
3
votes
1
answer
142
views
Visual Studio Code not recognizing std::cout
In Visual Studio Code, I get the following errors while using the following code.
#include <iostream> // Included header iostream is not used directly (fix available)clangdunused-includes
int ...
1
vote
1
answer
57
views
VS Code Intelephense shows "Undefined method" on custom Eloquent relationship after Auth::user()
Problem Description
I am using Laravel 13 and Visual Studio Code with the PHP Intelephense extension. I have defined a HasMany relationship in my User model called task().
However, when I try to call ...
-1
votes
1
answer
68
views
How to stop VS Code from opening settings in a subwindow? [duplicate]
The latest VS Code update just made opening settings (both UI and JSON) open in a new window on top of the old one. How do I revert this?
0
votes
1
answer
42
views
VS Code Live Share Starting collaboration session: certificate has expired
I cannot start a new collaboration session in the VS Code live share extension. I'm connected to a server remotely via SSH using the official "Remote - SSH" extension by Microsoft. I tried ...
0
votes
0
answers
68
views
Why are results in my integrated terminals disappearing after a moment in VS Code?
Results in my terminals appear for fraction of a second, then scroll away and disappear.
tried turning off GPU acceleration
tried turning off smoothing
tried turning off sticky terminal and ...
-4
votes
0
answers
35
views
WSL2 (Ubuntu 24.04) cannot connects to vs code without rhyme or reason [closed]
I am experiencing an issue where my WSL2 instance (Ubuntu 24.04) fails to stay connecting on vs code. Every time I try to launch it, it connects for a split second to vs code and then exits.I don't ...
-1
votes
1
answer
67
views
How do I manually open GitHub Copilot in VS Code if it doesn't appear automatically?
I am using Visual Studio Code with GitHub Copilot installed. Most of the time Copilot suggestions appear automatically, but sometimes when I open VS Code the Copilot chat or suggestions are not ...
-1
votes
0
answers
44
views
Enumeration warning when using VS Code debug console in a Vue project
I have a minimal Vue 3 application created using npm create vue@latest. The application contains a simple App.vue file with the following contents:
<script>
export default {
data: function(...
-2
votes
1
answer
100
views
Visual Studio Code unable to create java gradle projects
I'm trying to fix this problem from some days now, I have 'gradle for java' and 'extension pack for java' extensions installed, but when I try to create a new gradle java project, it tryies to create ...
-2
votes
1
answer
83
views
How to disable inline AI comment completions in VS Code?
If I begin to write a comment, the inline chat settings automatically attempt to finish the comment for me. I want to disable this, but keep other inline autcomplete features. Is there a way to do ...
Tooling
0
votes
0
replies
55
views
VS code autogenerate partials from import
Is there a tool or extension to automatically create SASS partials from @import statements like in PHP Storm?
E.g.
@import "assets/css/newfile";
should propose to create newfile.scss in ...