This commit is contained in:
OusmBlueNinja 2023-08-27 21:13:49 -05:00
commit aa5486cf2b
3 changed files with 5 additions and 3 deletions

View File

@ -63,6 +63,8 @@ class TextEditor:
def display(self):
print("Editing: " + self.file)
termSize = os.get_terminal_size()
colms = termSize[0]
for i, line in enumerate(self.lines):
highlighted_line = highlight(line, PythonLexer(), TerminalFormatter())
print(f"{i + 1}: {highlighted_line}", end="")