How to open symbols of Python dependencies?
How can I open symbols in the dependencies of my Python project?PyCharm indexes these symbols so I can access them via Navigate - Symbol (⇧⌘O).
View ArticleHow to fix "pygame module has no member K_RIGHT"?
I decided to make a simple snake game, and I've hit a simple problem already. My lines along the line of if keys[pygame.K_RIGHT], if keys[pygame.K_LEFT] etc give me a "pygame has no member...
View ArticleWhy does it say that module pygame has no init member?
This is the code I have:import pygame pygame.init() I'm very confused because if I try to run the file, then there seems to be no issue, but pylint says the following:E1101:Module 'pygame' has no...
View ArticleUse Jython and lint on VScode
I would like to use Pylint to lint Jython code. Clearly, all Java functions (JPanel, JFrame, JComboBox, etc.) are recognized as an error (eg. undefined variable 'JPanel'). I would like to know if there...
View ArticleMake VS Code auto-complete include headers from the whole project
I have VS Code configured with the native C++ extension and I'm using CMake as well as generating the compile_commands that VS Code can use to configure intellisense. Completion works as well as...
View ArticleWhy does intellisense highlight .json files like C++ files? VSCode MinGW C++
Why does VSCode highlights .json with C++ syntax?tasks.json in the IDE:c_cpp_properties.json in the IDE:IDE explorer with .jsons:
View ArticleChange VSCode style: Properly reduce the Height of tabs
With the help of this extension, you can change the styling of vscode.I want to reduce the height of filetabs to 20px. I'm using something like this:.editor-group-container{ background-color: purple;...
View Articlereplace parent vscode extension messages
I have a question regarding i18n in Vscode extensions. This is my use case: I have an extension that contributes a command that displays a message. This message is translated and localized using...
View ArticleVisual studio code: change the color of file text in the explorer but make it...
Is it possible to have a different color for every file in the Visual studio code file explorer? I know how to change every file text and icon but not separately.
View ArticleTrying to use Ballerina extension -Error: DeprecateWarning:Buffer() is...
[Error on checking the Visual studio log]I am not able to use the properties and methods of the library, the extension is not working properly, I have tried everything but nothing is working. Can...
View ArticleHow to run separate test for each of the folders in VSCode?
I am doing a code challenge. So, I download each of the challenges in the main folder. In VSCode, I have opened the main folder. The test is stuck/limited to the first test I ran. Is it possible that...
View ArticleRunning node js via backpack in debug mode inside visual studio code
I have a node API project build and run using backpack library I have created a launch.json file as following:{ "version": "0.0.0", "configurations": [ { "type": "node", "request": "launch", "name":...
View ArticleVisual Studio Code Grammar files location
I'm using Visual Studio Code for development of PHP and would like to style the background color of the different embedded languages HTML/PHP/JavaScript differently, and to trigger the use of heredoc...
View ArticleHow to test Website prototype with javascript? [closed]
When I open my website with the Visual Studio Live Server my Javascript can´t take action. How can I solve this problem? Are there any environments or another solution with node.js to test my site...
View ArticleVisual Studio Code Tab Key does not insert a tab
I'm using Visual Studio Code as my editor for Unity. I did a search on google but wasn't able to find anything about my issue.The issue is simple, pressing ⇥ Tab in the editor does nothing. I'm...
View Articlehow to run without exe
i used atom (with gpp-compiler) and i could compile with no .exe file output for c++ development.but from now on, i want to change my developing environment to VS code and soI compiled with code runner...
View ArticleHow to reset settings in Visual Studio Code?
It's a simple thing and I was pretty sure it's well described, but surprisingly it is not so obvious.Here I've found a detailed description of settings file. As it states it should be setting.json file...
View ArticleLoop to generate a list of 2 columns with Flutter
I'm a beginner with Flutter and I need to make a loop and generate a widget that contains rows with just 2 columns I tried too many different ways to do that but nothing works :/ when I put a loop to...
View ArticleVS Code: "Import Error: No module named request" although it's installed
To build a web scraping program in python 3 I do the followingimport urllib.request I use a venv, which is selcted and shown on the bottom left in VS Code. The settings.json file...
View ArticleCode-runner configuration for running multiple cpp classes in vscode
I have a cpp project with multiple classes and headers. I was trying to make it compile and run using tasks and lunch.json but I gave up. I realized that a while ago I had a problem with Python...
View Article