A collection of mutations that an extension can apply to a process environment.
A collection of mutations that an extension can apply to a process environment.
(append environment-variable-collection variable value)
(append environment-variable-collection variable value options)
Append a value to an environment variable.
Note that an extension can only make a single change to any one variable, so this will overwrite any previous calls to replace, append or prepend.
Parameters:
variable
: string
- The variable to append to.value
: string
- The value to append to the variable.options
: EnvironmentVariableMutatorOptions | undefined
- Options applied to the mutator, when no options are provided this will
default to { applyAtProcessCreation: true }
.Returns: void
Append a value to an environment variable. Note that an extension can only make a single change to any one variable, so this will overwrite any previous calls to replace, append or prepend. **Parameters:** - `variable`: `string` - The variable to append to. - `value`: `string` - The value to append to the variable. - `options`: `EnvironmentVariableMutatorOptions | undefined` - Options applied to the mutator, when no options are provided this will default to `{ applyAtProcessCreation: true }`. **Returns:** `void`
(clear environment-variable-collection)
Clears all mutators from this collection.
Returns: void
Clears all mutators from this collection. **Returns:** `void`
(delete environment-variable-collection variable)
Deletes this collection's mutator for a variable.
Parameters:
variable
: string
- The variable to delete the mutator for.Returns: void
Deletes this collection's mutator for a variable. **Parameters:** - `variable`: `string` - The variable to delete the mutator for. **Returns:** `void`
(description environment-variable-collection)
A description for the environment variable collection, this will be used to describe the changes in the UI.
Returns: string | MarkdownString | undefined
A description for the environment variable collection, this will be used to describe the changes in the UI. **Returns:** `string | MarkdownString | undefined`
(for-each environment-variable-collection callback)
(for-each environment-variable-collection callback this-arg)
Iterate over each mutator in this collection.
Parameters:
callback
: (variable: string, mutator: EnvironmentVariableMutator, collection: EnvironmentVariableCollection) => any
- Function to execute for each entry.this-arg
: any
- The this
context used when invoking the handler function.Returns: void
Iterate over each mutator in this collection. **Parameters:** - `callback`: `(variable: string, mutator: EnvironmentVariableMutator, collection: EnvironmentVariableCollection) => any` - Function to execute for each entry. - `this-arg`: `any` - The `this` context used when invoking the handler function. **Returns:** `void`
(get environment-variable-collection variable)
Gets the mutator that this collection applies to a variable, if any.
Parameters:
variable
: string
- The variable to get the mutator for.Returns: EnvironmentVariableMutator | undefined
Gets the mutator that this collection applies to a variable, if any. **Parameters:** - `variable`: `string` - The variable to get the mutator for. **Returns:** `EnvironmentVariableMutator | undefined`
(persistent? environment-variable-collection)
Whether the collection should be cached for the workspace and applied to the terminal across window reloads. When true the collection will be active immediately such when the window reloads. Additionally, this API will return the cached version if it exists. The collection will be invalidated when the extension is uninstalled or when the collection is cleared. Defaults to true.
Returns: boolean
Whether the collection should be cached for the workspace and applied to the terminal across window reloads. When true the collection will be active immediately such when the window reloads. Additionally, this API will return the cached version if it exists. The collection will be invalidated when the extension is uninstalled or when the collection is cleared. Defaults to true. **Returns:** `boolean`
(prepend environment-variable-collection variable value)
(prepend environment-variable-collection variable value options)
Prepend a value to an environment variable.
Note that an extension can only make a single change to any one variable, so this will overwrite any previous calls to replace, append or prepend.
Parameters:
variable
: string
- The variable to prepend.value
: string
- The value to prepend to the variable.options
: EnvironmentVariableMutatorOptions | undefined
- Options applied to the mutator, when no options are provided this will
default to { applyAtProcessCreation: true }
.Returns: void
Prepend a value to an environment variable. Note that an extension can only make a single change to any one variable, so this will overwrite any previous calls to replace, append or prepend. **Parameters:** - `variable`: `string` - The variable to prepend. - `value`: `string` - The value to prepend to the variable. - `options`: `EnvironmentVariableMutatorOptions | undefined` - Options applied to the mutator, when no options are provided this will default to `{ applyAtProcessCreation: true }`. **Returns:** `void`
(replace environment-variable-collection variable value)
(replace environment-variable-collection variable value options)
Replace an environment variable with a value.
Note that an extension can only make a single change to any one variable, so this will overwrite any previous calls to replace, append or prepend.
Parameters:
variable
: string
- The variable to replace.value
: string
- The value to replace the variable with.options
: EnvironmentVariableMutatorOptions | undefined
- Options applied to the mutator, when no options are provided this will
default to { applyAtProcessCreation: true }
.Returns: void
Replace an environment variable with a value. Note that an extension can only make a single change to any one variable, so this will overwrite any previous calls to replace, append or prepend. **Parameters:** - `variable`: `string` - The variable to replace. - `value`: `string` - The value to replace the variable with. - `options`: `EnvironmentVariableMutatorOptions | undefined` - Options applied to the mutator, when no options are provided this will default to `{ applyAtProcessCreation: true }`. **Returns:** `void`
(set-description! environment-variable-collection value)
A description for the environment variable collection, this will be used to describe the changes in the UI.
A description for the environment variable collection, this will be used to describe the changes in the UI.
(set-persistent! environment-variable-collection value)
Whether the collection should be cached for the workspace and applied to the terminal across window reloads. When true the collection will be active immediately such when the window reloads. Additionally, this API will return the cached version if it exists. The collection will be invalidated when the extension is uninstalled or when the collection is cleared. Defaults to true.
Whether the collection should be cached for the workspace and applied to the terminal across window reloads. When true the collection will be active immediately such when the window reloads. Additionally, this API will return the cached version if it exists. The collection will be invalidated when the extension is uninstalled or when the collection is cleared. Defaults to true.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close