aaronpowell / vscode-profile-switcher

A VS Code extension for switching settings easily
https://marketplace.visualstudio.com/items?itemName=aaronpowell.vscode-profile-switcher&wt.mc_id=profileswitcher-github-aapowell
MIT License
177 stars 19 forks source link

add ability to see current active profile #22

Open sultanmyrza opened 4 years ago

nyikozoli commented 3 years ago

You can easily achieve this with customizing the window title.

  "profileSwitcher.storage": {
        "flutter": {
            "window.title": "Flutter profile${separator}${dirty}${activeEditorShort}${separator}${rootName}${separator}${appName}"
        },
        "csharp": {
            "window.title": "C# profile${separator}${dirty}${activeEditorShort}${separator}${rootName}${separator}${appName}",
            "[csharp]": {
                "editor.defaultFormatter": "ms-dotnettools.csharp"
            }
        }
    },
richarddavenport commented 3 years ago

@nyikozoli That is actually a great solution, but only if you want it in the window title. I run vscode on my mac in full screen so I can't even see the window title, so for me it won't help.

If I had to guess I think this request is for something to be put in the status bar (since that's where statuses go).

richarddavenport commented 3 years ago

Hey! Look at that, there's already a PR #30!