Any config to import in single quote after refactoring typescript in Visual...
I have an enum AnEnum in a typescript file. There're 3 references to AnEnum.I use the refactor feature in VS Code: highlight the enum, click the light bulb, choose "Move to a new file". The enum AnEnum...
View ArticleHow to debug a nodemon project in VSCode
I have a NodeJs project and I run it using nodemon, I wish to run it in debug mode for development tasks, but I am unable to do so.I found that I'll need to add the right configuration to the...
View Articlevisual studio code, tslint showing unchecked changes for staging
I am using vs code for angular project with git source connected to my account. I added ts-lint with few rules. When I change one single line it is affecting for other changes. In staging process when...
View ArticleHow to Unhide/make-visible the 'activity bar' on visual-studio-code
I accidentally hide activity bar of vscode IDE. How can i make it visible again?I checked the 'view' menu bar options but could couldnt find an option for the task. Can someone guide me?
View ArticleObject reference in request.locals loses type inference
Why does an object load into req.locals apparently lose its typecasting?function ( req, res, next ) { const x = new Date(); // Hovering over x shows "const x: Date" req.locals.myDate = x; // Hovering...
View ArticleVSCode PHP snippet works when I open a file, but not when I open a folder
My php.json contains only one snippet:{ // Place your snippets for php here. Each snippet is defined under a snippet name and has a prefix, body and // description. The prefix is what is used to...
View ArticleIs it possible to use yarn-pnp with typescript/vscode?
yarn-pnp is awesome - no more node_modules! But without node_models, typescript/vscode can't seem to resolve modules correctly.Is there a way to make this work? Thanks!
View ArticleVS Code extension that show a model properties
Does anyone know about a VS Code extension that let me see the properties of a model from the HTML markup? For example, on ngModel, i write my binded and press dot (.) so it will open its properties...
View ArticleHow to provide argument while debugging any program using VSCode, and it...
How to pass an argument like --x 'value' or like --y=false or like --z, in your launch.json?
View ArticleAzure Functions deployment in VS code using conda environment
I have been having a little bit of inconsistency issue with python settings in VS code while trying to run my azure functions locally. I am trying to avoid using the "venv" environment that VS code...
View ArticleHow to test my Flutter app on my phone? With vscode
Good Morning,I am having a problem testing my Flutter applications for lack of memory. My computer only has 4GB of RAM and I can't open the emulator for lack of memory, can anyone help me how can I...
View ArticleFunction Selection highlighter/wrapper is missing in VS Code
When I put the mouse pointer inside a function, the entire function should be marked like the picture. But it is missing now. Please suggest me some fixes regarding this issue....
View ArticleHow to detach from docker container from integrated terminal (send [CTRL + P...
I'm just wondering how to properly detach a running container if it was started from VSCode's integrated terminal?On a Mac CTRL+P CTRL+Q doesn't work.
View ArticleHow to set a .NET project as StartUp in VS Code?
I'm using VS Code with the vscode-solution-explorer to develop a .NET solution.For debugging, I've configured my .vscode/launch.json file to run a build solution task and to execute a specific C#...
View ArticleHow to display hidden files with Visual Studio Code
The "open file" dialog in Visual Studio Code is not showing hidden files. For example, when looking at my home directory, none of the . files are shown:I did look through the settings.json file, but I...
View Articleintellicode for javascript (React) not working on VS Code windows 10
vscode's code hinting function doesn't work with javascript even though other languages (C, C ++, python ,, ...) still work. I tried using Ctrl + space but it still doesn't workintellicode with...
View ArticleReference error : myname is not defined in Node JS (Visual code studio)
functions1.js (file 1)const myname = () => { console.log("Hello"); }; module.export = myname; app.js (file 2)const sayname = require('./functions1'); myname(); Reference error : myname is not defined
View ArticleExtract VSCode SCSS for another Electron based project
Is there a way to build a new GUI from scratch but using VSCode styles?I need:main GUIleft buttonsleft foldereditor area (monaco with multiple tabs)footer
View ArticleHow to type in multiple spaces in mermaid?
I'm using VS-Code to edit my markdown file, and need to make flowcharts (graph) to display workflow.The problem is VS-Code will not properly display the long text title, the last few part will be...
View ArticleVSCode and flutter, how to connect multiple devices?
I am using Visual Studio Code on macOS for developing Flutter apps.I can select a single device in the bottom-left of VSC. I can also run on multiple devices using flutter run -d all. I am wondering...
View Article