Can't initialize PowerShell session in VSCode for Mac
Briefly, I installed PowerShell via Homebrew. Then I installed the extension in VSCode (also restarted VSCode). When VSCode picks up that I'm working on a PowerShell script it tries to start a...
View ArticleVSCode Python Intellisense: Doesn't show methods of a imported python class
Why VSCode Intellisense dont show methods of imported class?from tinydb import TinyDB db = TinyDB('db.json') db. # Here I dont have any methods of TinyDB object in suggestions list
View ArticleHow can I disable VSCode's suggestions for language keywords?
Currently, Visual Studio Code offers helpful hints on common language keywords like for and class and enum (I'm using Typescript). I don't need assistance with these words - they're just noise,...
View ArticleHow to see C# Nuget Package's source code on Visual Studio Code?
Is there any way to see a Nuget Package's source code when we choose "Go to Definition" (or F12 or CRTL+click)? At this time, I click (CRTL+click) on some class from Nuget Package in my code and the...
View ArticleHow do I import to my c project?
I'm using vscode and I have cl and gcc compilers.I want to use the winternl.h header in my C language project.When I compile with gcc (mingw), it gives me a fatal error that winternal.h is not...
View ArticleVScode not able to find JAR
I have downloaded antlr4 JAR (antlr-4.8-complete.jar) to /usr/local/lib and have added it to the CLASSPATH as CLASSPATH="$CLASSPATH:/usr/local/lib/antlr-4.8-complete.jar". I saved the following grammar...
View ArticleKotlin compilation in VS Code
'kotlinc' is not recognized as an internal or external command, operable program or batch file.This error comes when I try to run kotlin code in VS code using code runner. I know that the issue is with...
View ArticleHow to combine two language modes?
I am working with Nunjucks files which are largely HTML files with some templating. They are correctly recognized by vscode as Nunjucks files and therefore none of the HTML helpers are available.I can...
View ArticleMatplotlib error in VS Code for Mac Anaconda environment
I am working through the python tutorial for VS Code found at this link: https://code.visualstudio.com/docs/python/python-tutorialAt the bottom of the page is plotting example:1 import...
View ArticleVisual Studio Code: How to add a snippet entry to contextual menu?
I'd want to right-click on a variable name in my PHP file and be able to click on the contextual menu item "foreach", which is a PHP custom snippet. The idea is that this snippet will add a foreach...
View ArticleRegex in VSCode: case conversion in output
I'm trying to replace a structure like this:testVars.bread.componentFlour testVars.bread.componentWater to something like this:testVars.dough.flour testVars.dough.water this happens with multiple...
View ArticleTurn off visual studio code inline parent/child folder display [duplicate]
Im not sure if this is an extension or an update but ever since the most recent VS code update they have single folders inline with parent folders. I didnt think it would bother me as much but I find...
View ArticleHow do I debug a built-in Python command, package or module?
I would like to debug some of the basic packages that come with the Python install and/or are built-in packages, including pip and venv.The desire comes from an error message of file permissions...
View ArticleVSCode folder shows next to folder, not inside [duplicate]
When I create a folder inside another folder VSCode shows it like this.Not sure how to fix this or why it started doing this. Now when using name spacing in my code, it gives an error because it can...
View ArticleImport tensorflow.python.keras instead of tensorflow.keras
The autocomplete function of VS Code 1.41.1 does not work for example forfrom tensorflow.keras import layers (for tensorflow version 1.14.0) but it works forfrom tensorflow.python.keras import layers...
View ArticlePlus sign in VS Code Explorer Tree View
Is it possible to modify VS Code settings so that it uses the old fashion [+] and [-] signs instead of the arrows in the Explorer tree view -- see below?
View ArticleCannot add dependecies in pubspec.yaml without getting errors in flutter ios...
When on my Mac, and I try to add dependencies in the pubspec.yaml file I get and error saying /Users/justindosaj/Desktop/Project Folder/testapp/ios/Runner/GeneratedPluginRegistrant.m:10:9: fatal error:...
View ArticleCompiling C++ with VSCode on the Mac
Total novice C++ user going thru tutorials using Visual Studio Code on OSX. Barest bones Hello World program#include <iostream> int main() { std::cout << "Hello, World!"; return 0; } Then I...
View ArticleVS Code Markdown - is there a clever way to make links intellisense?
I've started using VisualStudio Code and Markdown as a note-taking tool - something akin to Zettelkasten. As part of this note-taking system, notes should always be linking to other notes/files.As...
View ArticleVSCode displaying freshly cloned files as modified with gutter indicators
I recently had some issues with my local github repository, so I deleted the entire folder (including all the .git files) and cloned a new fresh copy. However, when I open the files in VScode, the code...
View Article