My Visual Code Debug Extension, doesn't execute my debugger
I have created a Visual Code Debugger Extension, and in my extension activate routine, I can tell it was activated when I debug a sample *.xyz file, as it writes out XYZ Debuger Activated to the...
View ArticleDart_LoadScriptFromKernel: The binary program does not contain 'main'
I just run this code in VsCode and show this problem Dart_LoadScriptFromKernel: The binary program does not contain 'main'. Dart version:2.3.2 void main() { print("hello"); } is there any wrong with...
View ArticleVisual Studio Code and git (--separate-git-dir)
For personal purposes, I want to have my local git-repositories under a given local - say /usr/local/gitREPO - and checkout to another folder. Such things work with the command git clone...
View ArticleCannot update application build in electron (The command is disabled and...
this has been puzzling me for a while. I seem to be unable to update applications build in electron (e.g. vscode or Neo4J Desktop). Whenever I try to update any of the apps from UI, I get the...
View ArticleFunction exports in Node.js show up as properties in VSCode
This isn't technically wrong, so I didn't file as a bug on GitHub, but it seems like there should be better behavior (or perhaps a better way I can define exports). Say I have: function one() { // do...
View ArticleUsing TsLint and Region in VSCODE
In Vscode editor I would like to use regions(#region #endregion keyword) with the propose of organize my code. I'm working in vue/python application (old c# guy). I'm trying to set up an environment...
View ArticleShould I commit the .vscode folder to source control?
Is the .vscode folder meant to be committed to source control? In a fresh project, the folder is empty, except the settings.json file. What kind of things would go into this folder? Is it...
View ArticleMicrosoft Python language server not recognizing `for` loop over `zip()`
In the following mwe visual studio code seems to be unable to realize the type. Using mouse-over shows the type of testa as str and testb as float which is correct. Using mouse-over on aelem or belem...
View ArticleCan a `DocumentFormattingEditProvider` distinguish between a manual `Format...
I'm authoring a VSCode Formatter Extension; it's little more than a class that extends DocumentFormattingEditProvider that I'm using to hook into VSCode's native Format Document and Format On Save...
View ArticleHow to add missing descriptions for PowerShell IntelliSense in VSC?
I would like to see a short description of what different autosuggested commands do. See the image below. I have PS installed and the official PS extension for VSC. Most items have some data but the...
View ArticleHow to develop Linux Kernel Module with vscode without incorrect error detection
I'm trying to develop a Linux kernel module with vscode on Ubuntu, but vscode will throw a lot errors about Linux system header, kernel macro, etc. (Even if it's just a almost empty driver...) Can...
View ArticleCompiling header files for C++ using VSCode Code Runner
I am using VSCode and the code runner extension to try to run a simple c++ project with include files. The project is made of a main.cpp: #include <iostream> #include <time.h> #include...
View Articlehow to match and replace the repeated group patterns and align the result?
I have a code snippet like below [ "sortBy", "String", "sort by method" ], [ "sortOrder", "String", "sort order includes ascend and descend" ], [ "count", "Int", "The number of results to return." ],...
View ArticleDownloading Visual Studio Code but receiving error "apple cannot check it for...
I have downloaded Visual Studio Code for the first time but I keep getting message below: My macbook is up to date, and I even updated the latest version of VSC on their website (September 2019...
View ArticleVS Code change color of C++ "endl" statement
On different VS Code themes, I have different colors for "endl": VS Code Dark+ Atom dark one As you can see, themes can change the color of this statement, but I can't manually change the color. Do...
View ArticleHow to configure Visual Studio Code for Processing?
I am creating projects in Processing 3.5.3. I don't like the Processing IDE and want to use Visual Studio Code instead. I couldn't find a helpful source online (most didn't have the full...
View ArticleIs it possible to view Angular Framework's source code in Visual Studio Code...
I was playing around with a bunch of different VS Code extensions, and I thought that it would be really cool to view source code right from the IDE by navigating to definition. Is this possible? Do I...
View ArticleWhy it always report .net core SDK not installed while it already here?
I am going to debug my asp.net core project in the windows server 2012R2 while the VSCode reports this. Then I installed the .net core SDK. However, the error above comes again. Well, in the Programs...
View ArticleHow can I solve nuget fallback error in VSCode?
I have an asp.net core project created by Visual Studio 2019 16.4.0 preview 2.0 Now I open the project in another computer without Visual Studio but VSCode 1.39.2 Meanwhile, VSCode reports this error:...
View ArticleWaiting for debugger to disconnect... - Node.js in VSCode
I'm trying to step through a simple javascript example in Visual Studio Code, but the debugger hangs trying to disconnect. macOS Sierra version 10.12.6 VSCode version 1.18.1 (up to date) Node.js...
View Article