aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2024-11-17 17:15:55 +1300
committerTom Ryder <tom@sanctum.geek.nz>2024-11-17 17:22:56 +1300
commitb377b9839690c604d56571f4c6424e11078090e2 (patch)
tree5c731b1e351fdd4509f060d08adcae4454f9fa84
parentPut terminal emulator into a constant (diff)
downloadvixf-b377b9839690c604d56571f4c6424e11078090e2.tar.gz
vixf-b377b9839690c604d56571f4c6424e11078090e2.zip
Reformat command for clarity
-rw-r--r--vixf.py39
1 files changed, 3 insertions, 6 deletions
diff --git a/vixf.py3 b/vixf.py3
index ff8cc7d..3de33d9 100644
--- a/vixf.py3
+++ b/vixf.py3
@@ -61,12 +61,9 @@ with tempfile.NamedTemporaryFile(mode='w', delete_on_close=False) as tf:
editor = EDITOR
command = [
- TERM,
- '-name',
- SELF,
- '-e',
- editor,
- tf.name,
+ TERM,
+ '-name', SELF,
+ '-e', editor, tf.name,
]
subprocess.run(command, check=True)