Backspace sends DEL instead of ^H.
[spft.git] / edit-all
blob00d101ab3d09fadc289495cc188ccf4d0b1ae0ec
1 #!/usr/bin/env python3
3 import subprocess, os
5 classes = [
6         "TermWindow", "Terminal", "History", "Line", "Run", "Style",
7         "Settings", "UTF8", "Colors", "ElasticTabs", "FontSet",
8         ]
10 files = []
11 for class_name in classes:
12         files.append(class_name + ".h")
13         files.append(class_name + ".cpp")
14 files += [ "main.cpp", "Makefile", "Makefile.local", "edit-all", "spft.1", "README.md" ]
16 subprocess.run([ os.environ['EDITOR'] ] + files)