VSCode Python Intellisense
Although I'm using type hinting for the structure of a dictionary, VSCode's Microsoft's intellisense engine seems not to recognize the class inside the dictionary.For example, this doesn't work:class...
View ArticleVSCode use a logfile for debugging, jumping to filename:lineno syntax
I'm opening a logfile in vscode from a user, so it has a structure like this:# [2019-11-15 13:59:30 - reader.py:236 - INFO - reading file] # [2019-11-15 13:59:30 - reader.py:265 - INFO - writing to...
View ArticleVSCode - getConfiguration() Returning Cache Value?
An extension I'm writing has a single value in it's Contributes section like this:"main": "./out/extension.js", "contributes": { "configuration": { "title": "My Extension Features", "properties": {...
View ArticleKotlin class in other package not resolved
I started with Kotlin and want to exclude files in other packages in Visual Studio Code. Unfortunately it does not workPerson.ktpackage com.example public class Person( val _firstName: String, val...
View ArticleReact JSX error : Unclosed regular expression
Recently I was facing an issue coding React app on Visual Studio code. Because of this issue, whenever I wrote JSX inside the render function of the React Component and saved it, it would go messed up...
View ArticleOptional chaining operator support in VSCode
React Native 0.56 provides native support of Optional Chaining Operator i.e ?.However the latest stable release of VS Code can not recognize this syntax and throw a TypeScript validation error:[ts]...
View Articleis there any way to change code background color in VScode?
I would like to change the color of the comments so that it can be highlighted. I prefer to change background-color for most of the time. I found the color setting in setting.json. it looks like...
View ArticleFailed to load plugin 'import' declared in '... ยป eslint-config-standard':...
I've been trying to use ESLint along with Standard and I haven't been able to get it to work. I've tried setting it up through eslint --init, uninstalling eslint globally and having all the packages...
View ArticleIntellisense (VS Code) for Unity not working in Linux, requires .NET Dev Pack...
I've recently installed Unity 2019.2.12f1 on my Linux Cinnamon 19.2 machine, and got Visual Studio Code purely for the Intellisense feature. However, as with all Microsoft products, something went...
View ArticleHow to close this function prompt in VSCode?
Can someone tell me how to turn off this function prompt which labelled by red lines? I spent a night not finding it.
View ArticleIn VSC Marketplace how do you change your publisher image?
On a publisher's page there is an image of a man represented by two circles and a jigsaw piece. Is there anyway to change this image - maybe with your github profile image?
View ArticleBuild with MSVS compiler in VSCode
I'm trying to build my C++ project in VSCode. However, I'm experiencing link issues with OpenCV "error LNK2001: unresolved external symbol". I've build all the libraries I use with vcpkg.I build using...
View ArticleHow can I pass the arguments from a Visual Studio Code task.json to a g++...
I have a Visual Studio Codetasks.json file to run a C++ file via g++:{ "version": "2.0.0", "tasks": [ { "label": "echo", "type": "shell", "command": "g++", "args": [ "-I...
View ArticleVSCode node.js intellisense doesn't work for node.js 'process' object
In my VSCode, when I typed process, the process object doesn't show on the popup list. Similarly, if I type a dot after process, I can't see any process object's attributes on the popup list. How can I...
View ArticleVisual studio code not autocompleting my javascript methods
I am writing automated tests for a webshop using Visual studio Code, webdriverIO and javascript/nodeJSEverything works fine, but I can't seem to get vs code to autocomplete my methods (I am using a...
View ArticleHow to get Ubuntu Mono font working in Visual Studio Code?
I tried looking up all the other answers to custom fonts, but they don't seem to be working for me. I installed the Ubuntu tff font file. In 'Font Family' section I put Ubuntu, but it changes to a font...
View ArticleWarning: unrecognized cop Rails/
I have problems with Rubocop in Vs-code. I get the errorWarning: unrecognized cop Rails/ActionFilter found in /path/to/yml/with/cops ... Warning: unrecognized cop Rails/Output found in ... Warning:...
View ArticlePython install in Bash but not in windows cmd
Hi I am new to python and programming languages. I downloaded the bash terminal to windows and I see that python is already install:enter image description hereI try to run python in the cmd for...
View ArticleHow to make linked page transition with swup.js
How to animate page transition using Swup.js and "/" link attribute ?Hello, I am using Swup.js for page transition animation for my website. However, I don't know why the "/" attribute for my links...
View ArticleVSCode doesn't highlight extra spaces as errors
I use "Prettier" extension. Here should be highlighted errors:
View Article