4,679 questions
Advice
0
votes
0
replies
14
views
Headless command to install all recommended extensions in one go
steps to reproduce:
create extensions.json
in VSCode, go to Extensions pane and @recommended
Click the first cloud icon in the Workspace recommendations header 'Install Workspace Recommended ...
-1
votes
0
answers
45
views
VS code extension side panel UI development test [closed]
Is there anything I have to test the UI sidebar UI design test always without check from the extension running.
Advice
0
votes
0
replies
28
views
How can I achieve the same theme?
For C files, I've always used VScode's theme "dark modern" that grants this kind of visual theme:
I wish to drag this kind of theme into CLion, but I haven't been able to achieve the same ...
3
votes
1
answer
40
views
How to get VSCode Python import suggestions to use shorter public alias rather than private
When I get import suggestions in VSCode they always import from the module where the thing was defined, even if that's a private module and the thing is re-exported in some public module. I would ...
18
votes
2
answers
2k
views
Invalid settings: setting option "vulncheck": invalid option "Prompt" for enum
the default option of go.diagnostic.vulncheck
it's warning "Invalid settings: setting option "vulncheck": invalid option "Prompt" for enum".
haven't find any other ...
0
votes
0
answers
75
views
VS Code Icon Extension not extending Material icons
I have a basic VS Code extension whose job is to add an icon to VS Code for my language the .cat.
For now I had this;
{
"iconDefinitions": {
"_file_cat": {
"...
0
votes
1
answer
118
views
Some files appear with dropdown arrows like folders — how can I change this? [duplicate]
In VS Code, some files show a dropdown arrow and can be expanded, almost like folders (see image).
How can I disable or change this behavior?
I am using no extension that can cause this.
In other ...
Best practices
0
votes
2
replies
93
views
What's the best setup to use Ruby on Windows?
I'm new to Ruby and I'd like to know the best way to program in Ruby on a Windows computer.
I already have a setup, but it's not working very well: I have VS Code with the Ruby LSP extension, and in ...
0
votes
2
answers
77
views
PHP CodeSniffer won't run in VSCode
I'm trying to get PHP CodeSniffer to run in my Visual Studio Code.
I have an identical second system (notebook) where it does work, but on my desktop, it simply won't lint.
Using the following (on ...
2
votes
1
answer
82
views
How do you have multiple Arduino sketches in one VSCode project with PlatformIO
I am migrating from the Arduino Community Edition to PlatformIO. I have a problem configuring a single VSCode project with multiple sketches using PlatformIO.
My current Arduino development folder ...
1
vote
0
answers
52
views
Run SQL query from Postgresql extension from VS Code just by placing the cursor in the query
I was wondering if there is a way to run a query just by placing the cursor in the line or block. I know I can run the query by selecting it, but to me it seems a bit inconvenient especially when ...
0
votes
1
answer
112
views
Can we edit .py files in VSCode and use Google Colab extension to run them on Google servers like Jupyter Notebooks?
I have just get my hands dirty with VSCode's extension Google Colab (by Google).
While I can connect to google servers for running Jupyter Notebooks (.ipynb files), Is there a way to use VSCode ...
Advice
0
votes
1
replies
33
views
How can I create platform specific version for a VSCode extension
I'm making a VSCode extension that requires a compiled program (let's call it program A) to be shipped with the extension, but the build file is getting too large.
That is: on each OS platform, I have ...
0
votes
1
answer
109
views
How to copy a fully qualified method reference in VS Code (like IntelliJ’s "Copy Reference")?
I’m coming from IntelliJ and I’m used to the “Copy Reference” feature, which lets me copy a fully qualified reference to a method, such as:
com.mycompany.project.service.UserService.getUserById
I’m ...
0
votes
1
answer
56
views
vscode go to definition for scipy doesn't work
How to make VSCode "go to definition" work for scipy?
It works for all other packages but this one.
I have this:
import scipy as sp
If I right-click on scipy or sp and choose "Go to ...