VS Code unable to open files in the "PROBLEMS" tab because the path is badly...
I'm developing in C++ using Visual Studio Code, and I noticed that, when the build of the program fails, I cannot quickly access the line of an error displayed in the "PROBLEMS" tab by clicking on it,...
View Articlevscode - close debug console when debugging is done
Is it possible to automatically close the debug console when debugging is done? Right now it stays open with the text 'Terminal will be reused by tasks, press any key to close it.'
View ArticleWhy are code actions displayed in the problems view limited to quick fixes?
In this issue it is said:For quick fixes in the problems view however, we do request that extensions only provide quick fixes and will filter out anything that isn't marked as suchOur extension...
View ArticleVS Code: How to set semantic syntax coloring like Eclipse does. Default...
In C/C++, in Eclipse editor you can set colors at a more language level: For eg function argument, local variable can have different colors. Static and global variable colors can be changed. Macros and...
View ArticleHow can I investigate extensions problems with Visual Studio for Code?
When I click the Extensions I get nothing on one of my computers. I have checked the marketplace is not down. I have tried to delete the app and download a new version. Nothing helps. So are there any...
View ArticleWhy does my compiler say that there is a semicolin missing? [closed]
I am trying to run this code and it says that there are no problems in my IDE, but my compiler says "Error CS 1002: ; expected".I can't find it?using System; namespace code { } class Program { static...
View ArticleHow can I debug installed VSCode extensions?
In Atom, I'm able to debug installed extensions by opening the developer tools (Option+Cmd+I) and browsing through JavaScript files in ~/.atom/packages, e.g.Is it possible to do this in VSCode? After...
View ArticleFailed to install Npgsql (Visual Studio Code)
I'm having trouble with installing Npgsql in Visual Studio Code (.Net Core 3.1.1).I create a clean project and try install package. dotnet new consoledotnet add package Npgsql --version 4.1.2The...
View ArticleHow to setup a debugger in VSCode (Remote SSH)?
I did enter the java home in the settings file. It looks something like the below,/Library/Java/JavaVirtualMachines/jdk-12.0.2.jdk/Contents/Home/I'm still getting the error when running a java...
View Articleproblem getting build dependencies from conda in vscode build task OSX Catalina
I used to have a simple setup for debugging a C++ project built with scons with dependencies provided by conda where I would run a build task like the following:{ "type": "shell", "label": "build proj...
View ArticleVisual Studio Code new feature connect to Jupyter Notebook, it is possible to...
Looking at this article: Visual Studio Working with remote Jupyter Notebook, wondering and trying with JupyterHub API but was not able to make a connection from Visual Studio Code.It is possible to...
View ArticlePylintrc config to only show errors
I can't find a simple ~/.pylintrc file for ignoring everything but errors.Currently I have it set to this:[MESSAGES CONTROL] disable=W From this similar stackoverflow answer. In theory this should...
View ArticleMove terminal panel to bottom option gone? (VSCode)
Just updated VSCode to 1.29.0 on macOS 10.12.6 and it looks like this option to move the terminal to the bottom of VSCode (and then back right) is no more. Is that on purpose? Did it move to a specific...
View ArticleUsing C++ and WSL in VS Code for remote ARM64 device
I am trying to build helloworld.c file#include <stdio.h> int main() { printf("Hello, World!\n"); return 0; } Using C++ and WSL in VS Code but it ends. This example I can build it on WSL directly...
View ArticleHow config vscode for avoid the warnings on angular development
I am trying to find out how to avoid alert messages other than those that are directed to errors as such. Trying to follow some tutorials to learn angular I have found that the editor, in my case vs...
View ArticleVisual Studio Code> Python > Black formatting does not run on save
Although I seem to have configured both linitng and formatting properly, the linting runs but the black formatting does not. "python.linting.flake8Enabled": true, "python.linting.flake8Args": [...
View ArticleHow to programmatically make a TreeView visible
I'm trying to make a TreeView visible programmatically. The TreeView is empty.I tried to call TreeView.reveal with a dummy TreeNode but it remains not visible. The only other method available on...
View ArticleMoving Panel in Visual Studio Code to right side
In Visual Studio Code, panel section is at bottom by default. How do I move it to right side ? For example in the following image ,panel(Section D) is at the bottom, instead I want it to move to the...
View ArticleCan't debug rake task in VS Code
I configured my environment properly to debug rails apps in VS Code.It works fine for debug Rails Server. When I start the debug, it boots the server and stop at the breakpoints that I have marked.But,...
View Articlevscode - how to set up Debugger for Chrome (or Edge) extension to properly...
My project is laid out as so:${workspaceFolder} /wwwroot /res The /res directory is for serving files through a secure controller.My issue is when it comes to source debugging in vscode via the...
View Article