Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ __update_env_cache_aa() {
__update_env_cache() {
local key="$1"
local value="$2"
local i

for (( i=1; i <= $#__vsc_env_keys; i++ )); do
if [[ "${__vsc_env_keys[$i]}" == "$key" ]]; then
Expand All @@ -197,6 +198,8 @@ __update_env_cache() {
}

__vsc_update_env() {
local key var value

if [[ ${#envVarsToReport[@]} -gt 0 ]]; then
builtin printf '\e]633;EnvSingleStart;%s;%s;\a' 0 $__vsc_nonce
if [ $__vsc_use_aa -eq 1 ]; then
Expand Down