How to disable VS Code auto-rename-tag / HTML mirror feature?
I wanted to be able to easily edit HTML tags together. It seemed to me like this is such an easy thing to implement nowadays, so I've installed this auto-rename-tag extension, and it turned out to be a...
View ArticleHow to use SASS with VS CODE
I downloaded Chocolatey and installed SASS from there. But now what? I use VS Code, but I am not sure how SASS actually works in there when I am creating a styles.css file for my project. Am I supposed...
View ArticleHow to make VSCode always run main.py
I am writing my first library in Python, When developing I want my run code button in VS Code to always start running the code from the main.py file in the root directory. I have added a new...
View ArticleChange Visual Studio Code's title bar color
Is there a way to change the Title Bar color for Visual Studio Code (v1.26.0)?
View Articlenginx does not open localhost with VSCode Remote Containers Extension (docker...
localhost cannot be opened from the host browser with the remote containers extension of visual studio code.If you expand from VSCode Command Remote-Containers: Reopen in Container and open...
View Articlehaving trouble debugging a C file in vscode
I have a C file that I'm trying to debug but fail. I'm using vscode on windows 10. The file is quite large so I don't want to copy it here.This is how my launch.json file looks in the .vscode folder in...
View ArticleHow to pass command-line arguments to debugger using VSCode?
I'm using VSCode on Linux and I've came up with a the following launch configuration in my attempt to fire the VSCode debugger, which, in turn, would rely on gdb:{ "version": "0.2.0", "configurations":...
View ArticleVSCode how to connect to WinSCP
Is there a way to connect Visual Studio Code to WinSCP program?I tried that, but it doesn't work. I set this value to external editor "C:\Users\Omistaja\AppData\Local\Code\update.exe --processStart...
View ArticleAutomated search and replace in various files (json, yaml, js) + folder...
Situation: Devs clone a repo and put it in their own repo. They will need to rename just "project_name" in diverse namespaces/paths within a handful of files (among them yaml, json, js) and rename some...
View ArticleHow to use the same input string across multiple chained tasks in vscode?
I have multiple tasks that depend on each other and that should all operate on the same folder. My config looks something like this: { "version": "2.0.0", "tasks": [ { "label": "first task", "type":...
View ArticleHow to reset intellisense in VS Code?
If you make a code change while VsCode is debugging, the intellisense sometimes appears to malfunction with false compile errors. Fastest way to reset or correct it?
View Articlevscode format not formatting
I installed prettier plugin for vscode and have a .pretteirrc.js:module.exports = { trailingComma: 'es5', tabWidth: 2, semi: true, singleQuote: true, printWidth: 60, } In settings the default formatter...
View ArticleHow do you resolve conflicting linting rules in VSCode between eslint and...
I have my eslinting rules as follows"indent": ["warn", "tab", { "ignoreComments": true }], "no-tabs": 0, When I open a new file that is not properly formatted to tabs, I get:Fair enough, so I change...
View Articlehow to disable word-wrap in VS Code for a specific file?
I am using windows and VS Code, I have few files that I do not need to wrap them wherever I press Alt+Shift+F, is there a way to disable auto format wrapping for specific files?
View ArticleVisual Studio 2019: Not showing Typescript Intellisence
In VS 2019, when I hover I get no help:However, in Visual Studio Code I get rich help:Is there a way to enable more help in Visual Studio 2019 ?
View ArticleVisual Studio Code SQL Syntax Highlighting in .py Files
I am switching over from atom to VSCode and finding it to be a way better experience for (mostly) python.One thing I can't seem to work out is that the python syntax highlighting on atom recognised SQL...
View ArticleVisual Studio code Debugging Node.JS NOENT: no such file or directory when...
have a very strange problem. I'm coding a few small Node.JS programs, and debugging them in Visual Studio Code (for Windows). Well, recently I started to get a weird issue when the program hits the...
View ArticleIs there any solution for Python Tools server crashed
Is there any way to solve the problem of "Python Tools server chashed in the last 3 minutes. The server will not be restarted." in VS CODE ? Image for more information about this issue
View ArticleHow to run Run only a Single test in Visual Studio Code and Python with output
Does anyone know how to run only one python test with Test Explorer in Visual Studio Code? I have installed...
View ArticleFunctions debugging in VS Code
From VS Code integrated terminal I run firebase serve --only functions,hosting then in the debug tab I created the default launch.json:{ "version": "0.2.0", "configurations": [ { "type": "node",...
View Article