-
Notifications
You must be signed in to change notification settings - Fork 30k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to provide description to environment collection API #171108
Comments
Proposal: export interface EnvironmentVariableCollection extends Iterable<[variable: string, mutator: EnvironmentVariableMutator]> {
/**
* A description for the environment variable collection, this will be used to describe the
* changes in the UI.
*/
description: string | undefined;
} We probably still want a way to show the actual environment variable changes even with this description though. |
It would be nice if there were a |
@meganrogge I was thinking a button in the hover to toggle it, but I like your suggestion more |
Feedback from API sync: Add |
Closing in favor of #182069 as these issues were only open to finalize proposed API. |
I'm planning on finalizing this one independently of the workspace scope one this iteration. |
To verify make sure the API shows up in the stable API and does not have a proposed check. |
Tried this, not sure what I need to do to get this to work |
Particularly for the Python environments, the list of environment vars can be long, hence the prompt which shows up can be too verbose:
It would be perhaps more helpful if we can provide a simple description instead of the exact changes.
cc/ @Tyriar
The text was updated successfully, but these errors were encountered: