Is it possible to Auth to an OAuth 2.0 API from inside a vscode extension
My team writes a monitoring system which we have recently migrated the definitions of our monitoring into a git repo. These definitions are comprised of some json and powershell files. VSCode is an...
View ArticleSetting the language worker retry start count?
In VSCode I have the debugger automatically connecting to a node process, the debugger usually works to reattach itself on a typescript transpile but on occasion fails to attach with the error:Exceeded...
View Articlevscode-test - error when calling runTests
Its the first time im trying to set up tests for my vscode extension.I basically just copy pasted the example from /working-with-extensions/testing-extension from code.visualstudio.I can't call...
View ArticleHow to handle PHP exceptions try-cache with vscode like phpstorm?
Is there any vscode extensions that can handle try cache block and lint if the calling method has @throw in docblock like PhpStorm.
View ArticleTurtle Graphic Window not working from VSCode
I am using Visual Studio Code as my IDE and I am a bit of a beginner with Python so I decided to try out the turtle library built into Python to learn some of the syntax. However, when I tried running...
View ArticleVS Code Remote Development Go to Definition function doesnt work
Using VS Code Remote Development and a conda python environment, but recently i can't use the function Go to Definitionn and while hovering over code I cant see docs. But that still works for my local...
View ArticleProblem importing modules in Visual Studio Code
I am working on python using the editor Visual Studio Code. The problem is that there are certain packages that are already installed on my MAC but the Visual Studio Code shows an error when I try...
View ArticleProblem with Flow Language Support on VSCode and the autocomplete feature for...
I have initiated a react-native project and added flow language support extention in vscode to use it's features. As it is mentioned in flow-for-vscode, after installing the extension, I should be able...
View ArticleColor theme for VS Code integrated terminal
Can we change color settings of VS Code Integrated Terminal? Mine looks dull with just white.
View ArticleFolding Styled Components Consts in VSCode
I have been using Styled Components in NextJS/React and I love it. Generally, I break my styles out into separate js files, but because I am relatively new to React, props, hooks, and context and such,...
View ArticleVSCode including header file in c
I'm trying to work with my header files in c. When i use code blocks, it handles the header include part, but in vs code, i couldn't figure it out yet. this is what i get in vs code. The files are in...
View ArticleVSCode save/restore window layout
Can I somehow save window layout(with opened files) in VS Code and then restore it?I am looking for an alternative for EmacsC-x r w <register> where I can interactively open different saved...
View ArticleRemove unused enum values from source code
I have a lot (near 100) const enums in the code, some of them contain up to 100 values. I want to clean them up by removing values that are never used. All values are explicitly assigned a value, so I...
View ArticleHow to make the terminal autcomplete work
In the normal editor I have the autocomplete option.When I open a terminal in the lower part the autocomplete does not work.How can I enable the terminal autocomplete option?
View ArticleCustomize in kv py object
What I need is to know how I do to customize an object already instantiated.#Archivo py class Principal(ScreenManager): def __init__(self, **kwargs): super(Principal, self).__init__(**kwargs)...
View Articlewwwroot folder is not added to a project after running the `dotnet new web`
wwwroot folder is not added to a project after running the dotnet new web. Should I just add it manually?Here is the project structure that I see:I am following the tutorial over here, but instead of a...
View ArticleVisual Studio code can't install the Go tools
I try to use VS Code (v1.38.1) via WSL and when I launch any go tools installation or command Go:Install/Update tools, I have an issue with permissions. I tried to reinstall WSL and VS Code and got the...
View ArticleHow to roll back previous history of the file git vscode?
How to reload the previous history of the file in git source control in vscode? vs code provides to restore only last commit and I can see all the history of the file with "Git History" extension in...
View Articlegit difftool hangs and screen becomes unresponsive
My global .gitconfig file has:[diff] tool = vscode [difftool] prompt = false [difftool "vscode"] cmd = \"C:\\Users\\abc\\AppData\\Local\\Programs\\Microsoft VS Code\\bin\\code.cmd\" \"$LOCAL\"...
View ArticleTextmate Grammar - Highlight 'STR$' call
I had this regex for capturing some standard lib calls in a TextMate (vs code) grammar:(?i)\b(sin|cos|tan)\bNow, in a call like str$(5), I'd like to capture str$. You can't...
View Article