All Questions
Tagged with vscode or visual-studio-code
61,129 questions
0
votes
1
answer
61
views
Insert a newline after a function block
VSCode's formatter doesn't do anything to the following snippet:
function funciton1() {
...
} function function2() {
...
}
How do I get it to insert a newline after the function block?
...
-1
votes
1
answer
70
views
Disable VSCode Debugging Info In Editor
I recently noticed this inline debugging info appearing when running Python in VSCode (see attached). In larger projects this can be assaulting visually with the screen full of debug info I'm not ...
Advice
0
votes
5
replies
37
views
VS Code open a specific URL based on file or CLI in Simple Browser
I'm trying to open a URL specified in a .txt file or CLI using Simple Browser. When I change the URL, the browser should refresh. Is this possible?
I tried a task for opening the browser, it works:
{
...
-1
votes
0
answers
48
views
VS Code & TypeScript Debugging: Cannot find module, even when in the same directory
I am trying to debug a TypeScript program using Visual Studio Code. I can run and debug automated tests that import locally-defined modules using the interactive debugger, but trying to run a simple ...
0
votes
1
answer
55
views
Workspace variables don't work for "command" key value in tasks.json for type:"cppbuild"
In VS Code tasks.json with C/C++ buildtools extension installed, workspace variables like ${config:aga} or ${global} are replaced with their values in args array entities, if the type key is cppbuild ...
Best practices
0
votes
4
replies
62
views
Enterprise patterns for VS Code extension governance
We’re looking at patterns used by enterprises to manage VS Code extensions at scale.
Specifically:
How organizations balance extension allow‑listing vs developer flexibility
Experiences with the ...
1
vote
1
answer
85
views
How do I disable *automatic* autocomplete in VS Code?
A library I'm using has functions that VS Code doesn't know exist. When I try to use functions from this library, I type the function, and when I type the ( to call it, VS Code automatically fills in ...
-1
votes
1
answer
128
views
How to compile a 32-bit executable via cl.exe with VS Code?
In the 64-bit Windows 10 OS, I want to compile a 32-bit Windows executable via cl.exe with Visual Studio Code. I have installed C/C++, CMAKE and C/C++ DevTools extensions and installed Visuall C++ ...
-1
votes
0
answers
42
views
VSCode source control keep asking for SSH key passphrase [closed]
I got an issue related to VSCode Source Control panel. It keep asking for passphrase (for SSH cloned repositories) at any pull/push.
By the integrated terminal, because of my SSH config, I will type ...
0
votes
1
answer
70
views
Data Wrangler in Jupyter Notebook is not displaying
I've been using Jupyter Notebooks for a long time and when I run "df" to show the dataframe it used to be presented with Data Loader.
Today I noticed that it's not displaying anymore. I've ...
-2
votes
0
answers
46
views
Stuck on interrupting kernel [closed]
My Visual Studio Code sometimes gets stuck on "Interrupting kernel".
It has been stuck since yesterday (I went to bed and left it there; this morning, it was still stuck), so it's not a ...
Advice
0
votes
1
replies
69
views
VS Code: Double-clicking files always replaces current tab, no close button on tabs
Problem description:
When I double-click any file in the Explorer sidebar, it always replaces the currently opened file instead of opening in a new tab. Also, there is no close button (X) on any tab — ...
-6
votes
0
answers
73
views
The problem is when I print there is excessive data, as shown below, can anyone find a solution to this? [duplicate]
So i'm using c++ with g++ in VS Code, and I've looked up answers but I haven't found any that actually fix my problem. My launch.json is blank. If you need additional information ask me, and here are ...
0
votes
0
answers
46
views
VS Code Terminal is not in synch with the CLI
I'v created a conda virtual environment in the CLI. I activated it and ran code . from that activated environment however, I'm noticing that the pip is different in the different CLIs.
From the ...
0
votes
0
answers
88
views
VS Code C++ Windows executable resources
Can I, using Visual Studio Code for C++ Windows desktop development, make an exe with embedded resources? In Visual Studio it is done via rc.exe . Can I do same via VS Code?