university-setup/scripts/edit.py

19 lines
442 B
Python

#! /usr/bin/python3
import subprocess
from pathlib import Path
import os
def edit(filepath: Path, rootpath: Path = None, texinputs=None):
env = dict(os.environ)
if texinputs:
env["TEXINPUTS"] = texinputs
if not rootpath:
rootpath = filepath
subprocess.Popen([
"termite",
"-e",
f"vim --servername tex-vorlesung --remote-silent {str(filepath)}"
], env=env, cwd=str(rootpath.root))