Reputation: 170846
I find myself in need of having touch the settings.json
quite often and the manual approach is extreamly annoying as there is no directly visible link in the settings dialog.
Is there a way to create a shortcut that opens the files directly?
Upvotes: 2
Views: 2290
Reputation: 472
The commande that you're searching is : workbench.action.openSettingsJson
So to open Setting directly with a keyboard shortcut put this in your keybindings.json
:
{
"key": "ctrl+k s",
"command": "workbench.action.openSettingsJson",
}
Upvotes: 2
Reputation: 1127
Keyboard Shortcuts
: openSettingsJson
Command Palette
: open settings (JSON)
Upvotes: 2