We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 091e691 commit 27e1058Copy full SHA for 27e1058
src/tmuxp/workspace/loader.py
@@ -157,6 +157,9 @@ def expand(
157
if any(val.startswith(a) for a in [".", "./"]):
158
val = str(cwd / val)
159
workspace_dict["environment"][key] = val
160
+ if key not in os.environ:
161
+ # using user provided environment variable as default vars
162
+ os.environ[key] = val
163
if "global_options" in workspace_dict:
164
for key in workspace_dict["global_options"]:
165
val = workspace_dict["global_options"][key]
0 commit comments