Gruntfuggly / activitusbar

A VSCode extension to save some real estate by recreating the activity bar buttons on the status bar
Other
114 stars 15 forks source link

Shorcut to load settings.json file rather than Settings page #45

Closed bprabhus closed 3 years ago

bprabhus commented 3 years ago

Is it possible to redirect a button to the open setings.json file in the editor rather than the settings page?

My current Activitus bar setting -

       {
            "name": "settings",
            "codicon": "gear",
        },
Gruntfuggly commented 3 years ago

Yes, you can use

        {
            "name": "command.workbench.action.openSettingsJson",
            "codicon": "gear"
        }
bprabhus commented 3 years ago

Perfect! That works. Thanks