Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS Code. How to open JSON settings with defaults

When I'm opening settings using Preferences: Open Settings (JSON) I'm getting screen like this:

enter image description here

But in VSCode videos/tutorials I see people somehow have splitted window, with default settings on the left and user/workspace setting on the right:

enter image description here

How I can enable it?

===========================

EDIT:

I found "workbench.settings.openDefaultSettings" option and set it to true, but still my UI is different from desired on screenshot above ( I don't see search box for searching settings, also I don't see the message Place your settings in the right ... to override):

enter image description here

like image 542
WelcomeTo Avatar asked Feb 20 '19 11:02

WelcomeTo


People also ask

How do you open your Visual Studio code user settings preferences as json?

To open the User settings: Open the command palette (either with F1 or Ctrl + Shift + P ) Type "open settings" You are presented with two options, choose Open Settings (JSON)


1 Answers

As mentioned @Juraj Kocan in comments, it happens after last VS Code updates.

This is Github issue related to this new "feature"

This one helped me:

"workbench.settings.useSplitJSON": true, "workbench.settings.editor": "json", 
like image 58
WelcomeTo Avatar answered Sep 21 '22 12:09

WelcomeTo