mirror of
https://github.com/vale981/py-vterm-interaction.el
synced 2025-03-04 09:31:40 -05:00
10 lines
198 B
Python
10 lines
198 B
Python
def get_env(tempfile):
|
|
import os
|
|
|
|
dump_json(
|
|
tempfile,
|
|
dict(
|
|
env=["=".join(el) for el in list(os.environ.items())],
|
|
cwd=os.getcwd(),
|
|
),
|
|
)
|