From 152fe36797d29486b927803f82abe950cfac6055 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Tue, 4 Apr 2023 22:26:42 +0200 Subject: [PATCH] fix passing servername --- src/window_subprocess.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/window_subprocess.py b/src/window_subprocess.py index 12e748b..d8033f9 100644 --- a/src/window_subprocess.py +++ b/src/window_subprocess.py @@ -14,7 +14,8 @@ def edit(filepath: Path, rootpath: Path = None, env=os.environ, servername='tex TERMINAL, "-e", EDITOR, - f"--servername {servername}", + f"--servername", + f"{servername}", f"--remote-silent", f"{str(filepath)}" ], env=env, cwd=str(rootpath))