How do we remove ssh targets from Remote Explorer
The Remote Explorer sidebar has an obvious icon for adding new targets but I can't find an option for removing or editing a target. In my case, servers' IPs change frequently so they just continue to...
View ArticleWhat Visual Studio Code extension is good for 3 way merging?
I am currently learning Visual Studio Code. I come from a WebStorm background. Is there an option or extension to merge 3 ways? Where in Visual Studio Code can I merge conflicts?At the moment, I...
View ArticleCan I open a URL as a "file" in VSCode?
I would like to open an URL http://localhost/myendpoint.json as a file in VS Code so that I can compare the result with a static .json file on disc.Is this possible?
View ArticleConfigure zoom sensitivity in Visual Studio Code
Is there a way to configure the "zoom sensitivity" in VSCode?When I zoom in on the editor it changes the zoom level by 20% (as it says in the documentation). I'd like it to be around 10%, so I can...
View ArticleWhat is the issue with the trailing comma of JSON Object
Usually i am creating valid JSON objects like this:{ hasPermission: true, notificationStatusId: 1 }; ON VSCode, when is save the file, sometimes it's adding a tailing comma automatically after the last...
View ArticleUnable to save files using Visual Studio on Linux?
I'm trying to save my file to my server. I can open the folders and files. But I cannot save any files. I get this error:Failed to save 'file': Unable to write file (NoPermissions (FileSystemError):...
View ArticleOnly lint typescript when saving file in VSCode
By default VSCode validates the typescript sources while editing them. Is it possible to somehow change this to only validate the sources when the files is saved? This is possible with ESLint but I...
View ArticleCustomizing style of directories in FileSystemProvider?
Making an extension that has virtual filesystem (fake directories and files) in vscode. I've managed to make it and it is working fine, but need to customize a few things and couldn't find any...
View ArticleWhy does Visual Studio Code open my PowerShell files in a separate shell...
I have "terminal.integrated.shell.windows": "C:\\Program Files (x86)\\PowerShell\\6\\pwsh.exe" set in my settings.json file, and when I open VS code without any files open the terminal is set to pwsh,...
View ArticleVSCode keyboard shortcut to navigate from search bar to highlighted selection
I'm constantly searching code within a file in VSCode.Is there a keyboard shortcut to navigate from the search bar to the highlighted selection in the editor? That would make things much more efficient...
View ArticleVisual studio code with Azure Repos - cannot checkin
In visual studio code with Azure Repos extension, did some changes to existing code script, and clicked checkin button to check it into TFS.Received two error messages : one about signed out although...
View ArticleVisual Studio Code - Target of URI doesn't exist 'package:flutter/material.dart'
I've just setup my Macbook for flutter development, So I downloaded flutter sdk, and placed it in my Documents. After, I setup my path variable to work with flutter in my command line.I execute the...
View ArticleHow does mock-debugger control which line the debugger steps next?
I'm unable to understand how the mock-debugger extension controls where the next step is.For example what if I'd like to step 2 lines if I find the word "banana" in my text? Also, I'd like to do...
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 ArticleVSCode's terminal home directory change and my files lost?
OS: Windows 10VSC Version: 1.36.1In VSCode terminal I used to use command to enter my home directory:$ cd ~ and it will enter this path /u/.But now I input cd ~ in VSC terminal, it enter path...
View ArticleHow to stop execution of python script in visual studio code?
I have the following code which I am running from within Visual Studio Code using Right click > Run Python File in Terminalimport threading def worker(tid): """This is what the thread actually...
View ArticleTidy Tabs, but for VSCode?
I really miss the "tidy tabs" extension that automatically closes tabs older than a certain age in Visual Studio. Is there any extension for VSCode with similar functionality?
View ArticleIssue loading workspaces with VSCode on Linux
Configuring VSCode - Insiders on Ubuntu-Mate 18.04 and running into a issue loading workspaces I have created. I can create the workspaces with specific folders, but when I attempt to 'load' that...
View Articlevscode how to automatically jump to proper definition
//extension.ts export function activate(context: vscode.ExtensionContext) { console.log('Congratulations, your extension "helloworld" is now active!');...
View ArticleE0401:Unable to import 'flask'
Am new in flask development and trying to import flask in my project but Pylint is giving this error in VSCodeE0401:Unable to import 'flask', but I installed flask already in my project but I don't...
View Article