Gruntfuggly / activitusbar

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

The setting 'activitusbar.views' is invalid #9

Closed karise-guo closed 6 years ago

karise-guo commented 6 years ago

I set the activitusbar.views to hide the bug view, but is no effect.

Gruntfuggly commented 6 years ago

Hi - unfortunately due to the way vscode aggregates the settings, you can't simply remove the setting like that. You have to use an empty string. Changing it to:

    "activitusbar.views": {
        "explorer": "file-text",
        "search": "search",
        "scm": "repo-forked",
        "debug": "",
        "extensions": "package"
    }

should do what you want. 8-)

karise-guo commented 6 years ago

Thanks, it works.