Trying to build Flutter app for distribution. Execution failed for task...
I'm trying to build an apk to upload to Firebase App Distribution. When I run ./gradlew assembleRelease appDistributionUploadRelease I get this error:FAILURE: Build failed with an exception.What went...
View ArticleHow to show docstring or function signature in VS Code for a Jupyter Notebook?
I currently have installed VS Code as an alternative editor to Jupyterlab for Python Data Science development. Now I am wondering about how to show the docstring or signature of a function? I didn't...
View Articlesetup root folder in vs code in a python project
I have a project called hello, and path to this project is /home/Ubuntu/work/greetings/hello. my virtual environment named hello is created in /home/ubuntu/work/virtaul_environments/hello. My project...
View ArticleDebug WordPress plugin using Xdebug + XAMPP + VSCode
I want to debug a WordPress plugin using xdebug + XAMPP + VSCode. But VSCode is not hitting the breakpoint in the plugin main PHP file. If I run the website as localhost in the browser, the plugin...
View ArticleVisual Studio Code compile on save
How can I configure Visual Studio Code to compile typescript files on save? I see it is possible to configure a task to build the file in focus using the ${file} as an argument. But I would like this...
View ArticleDebugging in VS Code using Jasmine framework (for Protractor)
I'm trying to debug in VS Code. I've created the launch.json file:{ "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "Launch Program", "program":...
View ArticleCannot read property 'transformFile' of undefined exception vue-native
I just wanted to try vue-native. However I get this error. bundling failed: TypeError: Cannot read property 'transformFile' of undefinedHere is my package.json file{ "name": "vueNativeDeneme",...
View ArticleIs it possible to have local sources compiled on a remote computer with VSCode?
We have a Linux server with a specialized compiler toolchain installed and the way I work now is I connect to that server with VNC and use VSCode installed on the server to edit and build code.I wonder...
View Articlegetting error while connection android emulator with Visual Studio code
while setting up visual studio code with android emulator Nexus 6 mobile, when i click debug, i am getting this error ''FIREBASE\brew_crew\android\' is not recognized as an internal or external...
View ArticleHow to syntax-highlight HTML inside JavaScript strings in VS code?
Is there any Vs Code extension to syntax-highlight HTML inside JavaScript strings?Specifically I am writing web componentsconst html = content => `<div><table>...
View ArticleDebug FastAPI application in VSCode
i'm trying to debug an application (a web api) that use FastAPI (uvicorn) I'm also using poetry and set the projev virtual environment in vscode.i read this tutorial to setup uvicorn and this one to...
View ArticleVSCode Python - print statement not printing to output
I am new to VSCode. I have set it up on Windows. When I run it using Code Runner,I see Running and Done messages but the print statements are not working.print("Hello World!") print ("This is VS Code")...
View Articlecode navigation within python module not possible in visual studio code
first of all, this is my workspace structure:workspace_root ├── ... ├── libs │ └── module_name │ ├── README.md │ ├── module_name │ │ ├── __init__.py │ │ ├── caller_with_main_calls_service.py │...
View Articlein JSON in vs-code, how can I give strings in arrays a different color than...
I want to be able see where arrays are and where objects are at a glance, therefor I would like to give strings in arrays a different highlighting than strings in objects. Is this possible, and if so,...
View ArticleI get a SyntaxError when I type 'npm run serve'. The error is: Unexpected...
I get a SyntaxError when I type: npm run serveThe error is: Unexpected token, expected "," (45:2)What am I doing wrong?I am working with Pusher and Vue.js in Visual-Studio-Code.This is a Tutorial from...
View ArticleIs there a way to show a normalized version of a type in typescript?
There are plenty of parametrized type aliases that are used in typescript and it can sometimes be difficult to determine what the actual type is below all the abstraction layers. Is there some way to...
View Articleloop through multiple selections and edit individually in vscode
In sublime text I used to use a shortcut that allowed me to tab through my multi selection and edit each element individually.for example I would cmd+d a word then the shortcut would allow me to tab...
View Articlehow can I match a string that is followed by a colon in a textmate grammar
I have a textmate grammar with just strings and colons. Is it possible to have a pattern that matches the strings that are followed by a colon with a different name than the strings that are not...
View ArticleBroken typescript intellisense with web workers in VS Code
So I have a typescript/React project in VS Code where I have several different browser apps plus a web worker. The web worker needs different typings from the React apps. By having separate...
View ArticleIssues launching Python Interactive in VS Code
I am trying to setup Visual Studio Code using Python Extension and Anaconda. My current environment is set to {'base':conda}. However, I keep getting the error given below:Command failed:...
View Article