How do I get Visual Studio Code to trust our self-signed proxy certificate?
Our corporate firewall/proxy is keeping VS Code from being able to install extensions because Code doesn't trust something in the chain. It doesn't reliably give an error, but when it does, it's this:...
View ArticleVisual Studio Code
I'am using a new MacBook running on OS X 10.15.3 Catalina from scratch. I was/am installing from the gitup site, apache2,php and other requirements to finally install Magento 2.3.3. I am trying to...
View ArticleVisual Studio Code - Include context in search results
Is there a way to show context for search results in Visual Studio Code?By default, if I search "debug" for example I might get 2 lines of code returned.filea.rb def debug(str) fileb.js function...
View ArticleUse Jython and lint on VScode
I would like to use Pylint to lint Jython code. Clearly, all Java functions (JPanel, JFrame, JComboBox, etc.) are recognized as an error (eg. undefined variable 'JPanel'). I would like to know if there...
View ArticleIs there any way to sync my Visual Studio Code settings between instances?
I'd like to be able to sync my VS Code user settings (File > Preferences > User Settings) to the cloud somehow so I can easily share them between multiple installations, as in Windows 10 and...
View ArticleSettings from the .editorconfig are not respected in Omnisharp / VS Code
I'm trying to set up my Visual Stuido Code so that Omnisharp uses settings supplied in an .editorconfig, as described in...
View ArticleOpening VS Code remote with URLs
Open a file works fine for local sessions. Like vscode://file/c:/myProject/package.json:5:10 for a local file, from a local browser. or vscode://file/home/myhome/myProject/package.json:5:10 for a...
View ArticleChange color of characters surrounding comments in VS Code
how can I change the color of the characters that come before and after a comment in vs code. Im Talking about or /* */ or # characters. I know how to change the comment color How do I change color of...
View ArticleHow to change VisualStudioCode comment color with it's slashes?
I added this code to my setting.json"editor.tokenColorCustomizations": { "comments": "#00ff00" } But It doesn't change the color for slashes as you can see the below screenshot. It remains still...
View ArticleC# Error CS0234 even after adding aspnetcore and extensions packages
I have a C# code that I am trying to run on VS Code. The steps I went through are as follows:create folder (for this case we will name it "Program") for the program files and then run dotnet new...
View ArticleHow to inspect javascript source code using VSCode
Whenever I try to look at javascript method definitions like Math.max() for example, I'll usually end up in a .d.ts file and I don't know where to go from there to view the actual method...
View ArticleProblem to get vscode to debug jest tests in a typescript environment
I need help with getting vscode debug jest tests in a typescript environment. I compile my project by using a tsconfig file called tsconfig.debug.json and i compile my code like...
View ArticleVS Code not recognising module aliases in Expo project
I've set up import aliases in my Expo project. It's compiling fine however VS Code doenst recognise the import:In tsconfig.json{ "compilerOptions": { "allowSyntheticDefaultImports": true, "jsx":...
View ArticleDebug Jest tests for Lerna project in VS Code
I'm wanting to debug specific Jest tests in VS code for a project that uses Lerna, so there are multiple folders each with their own node_modules folder. With help from this answer I've got the...
View ArticleHow to compare a file in two different commits using the GUI
I refer to https://code.visualstudio.com/Docs/editor/versioncontrol#_viewing-diffs.Is there a way to easily show a side-by-side diff of a file in two different locations, eg work tree and a specific...
View ArticleHow to not group folders and files in the sidebar of VS Code but order...
I have the following file structure in VS Code:├── 01-getting-started │ ├── 01-quickstart.mdx │ ├── 02-setup-prisma │ │ ├── 01-add-to-an-existing-project.mdx │ │ ├──...
View ArticleVisual Studio Code to use node version specified by NVM
Is it possible for VS Code to use node version specified by NVM? I have 6.9.2 installed locally. Even after switching to another version, from the OS X terminal (not the VS Code terminal), restarting...
View Articlehow to import mjs in vscode?
Is it possible to make a vscode extension made of mjs files?because I tried to make an extension with mjs files only, in order to have full es6 features without TypeScript. But it does not run:If I...
View ArticleGit history as regular files
I wonder if there is a way in Git itself, or in a text editor, to have Git history displayed as regular files directly in the file tree.Like if I have a file landing.html with a couple of previous...
View ArticleVS Code is not showing errors
If I have typed: var alien1=new AlieNNConstructor("Venus","1511"); instead of var alien1=new AlienConstructor("Venus","1511"); Why does Visual Studio Code does not give me an error. I have experience...
View Article