VS code new update doesn't retain opened file (tabs) when switching/opening...
Early February VS Code update seemed to have messed my entire IDE settings.Version: 1.42.0When I open a file and switch or drag another file to the main working area the previous one just closes even...
View ArticlePython Intellisense VSCode Wrong Autocomplete Imports & PyLint wrong...
My current app structure is:backend -- api |-- migrations |-- app | -- main | -- routes.py | -- modules | -- Mod1 | -- helper.py | -- controller.py | -- Mod2 | -- helper.py | -- controller.py |-- venv...
View ArticleVS Code knows Scala and Java, but can't connect them
I am trying to interoperate Scala with Java, and have managed to create a Maven based project (repository here) that compiles fine from commandline (mvn clean package).However, I keep running into the...
View ArticleVSCode single to double quote automatic replace
When I execute a Format Document command on a Vue Component.vue file VSCode replace all single quoted string with double quoted string.In my specific case this rule conflicts with electron-vue lint...
View ArticleAMP Stack and VS Code [closed]
Previously, I had done my coding using Sublime Text to create my code and MAMP to give me the server, MySQL and PHP. The machine that I was using has developed an issue, so it was replaced. As I set up...
View ArticleHow do I set the directory for the test folder in Visual Studio Code with Mocha?
I've been trying to learn unit-testing with Mocha using Visual Studio Code, as per this tutorial. But when I click the Play button to start Mocha Tests, I get an error about not finding the test...
View ArticlePug comments highlighting in VS Code
Why VS Code dont see standard comments in pug files?Standard comment (token type String but not Comment)Comments that will be hided in HTML is ok (token type Comment)I just want comments like // my...
View ArticleCan't open VSCode with other user
Well basically i created another user, and i'm tring to open a node project, but i can't use "code ." (i think it's because vscode is installed in the other user, but idk) without having the following...
View ArticleDisallow barrel file imports within the same library in Nrwl Nx
Suppose we have an app and a library in Nrwl Nx./apps /myApp /libs /myLib /components /my.component.ts /other.component.ts /index.ts I have already set tags in nx.json and nx-enforce-module-boundaries...
View ArticleSetting up Python remote debugging in VSCode
I am having my remote(ubuntu 16.04) drive mounted on my local system(ubuntu 16.04) so that I can edit the source files by opening them in vscode.Also, in the integrated terminal I can ssh to remote...
View ArticleLibman - How to install dependencies of installed library
I am using Libman - Asp Core - VsCodeI Installed Semantic-ui which needs jQuery,Popper and etc.Is there a way that Libman install it's dependencies automatically while installing a library ?Like what...
View Articlewhy SASS @use rule is not working in vs code?
functions/_space.sass // some colors .test margin: 0 colors/_colors.sass // some colors $primary: #007bff style.sass /** * @application tools * */ @forward 'colors/colors' @forward 'functions/space'All...
View ArticleIs it possible to build and test a multi target c# dotnet project in Visual...
I've a multi target C# dotnet project with these frameworks defined in the csproj file:<TargetFrameworks>net451;net452;net46;net461;netstandard1.3;netstandard2.0</TargetFrameworks> However...
View ArticleTell VS Code to always use relative paths for TypeScript auto imports?
VS Code is auto-importing everything relative to baseUrl using Node-like non-relative paths, which is what I don't want.How do I tell VS Code to import everything with relative paths (except for Node...
View ArticleHow to quickly change shell folder to match the currently open file
With single file opened in vscode, when I open integrated Powershell it always starts in my $HOME folder. Is there any way to quickly switch to the directory of the currently shown file without having...
View ArticleIs it possible to make vs code (files-folders)tree view like notepad++?
I am using vs code for a long time. But I hate this tree view system. In vs code when I hover on the sidebar it shows a sideline to the exact line Otherwise it's always hidden or I don't like this....
View ArticleVS Code memory view with GDB debugger
I try to access memory viewer on VSCode with GDB debugger as suggested by the debugger to debug C++ code. However typing -exec info registers as suggested by debug console gives no response.I am using...
View ArticleHow to configure absolute imports in CRA created app via jsconfig?
{ "compilerOptions": { "baseUrl": "src" }, "include": ["src"] } I did it just like in the official guide, but vscode gives me an error, that dotenv types file hadn't found (moreover, it gives me this...
View ArticleVSCode IntelliSense not recognising SDL_image extension library for SDL...
I am trying to include the SDL_image extension library to SDL.framework in my project but VScode's IntelliSense keeps underlining my #include<SDL_image.h> with error lines. It produces the...
View ArticleVS Code Python debugging. How to continue from error. Repeat fromline after...
During development it's often happens to me that i have pretty long script execution (which doesn't depend on me), and when error occurs at the late steps it is really annoying to rerun whole script...
View Article