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

@ -42,4 +42,4 @@ def install(name:str, Packages:list):
print(f"\n{color.green}Success:{color.white} Successfully installed {name}.")
except Exception as e:
raise Exception(f"{color.red}{e}")
raise Exception(f"{color.red}{e}")

View File

@ -356,4 +356,4 @@ def start():
if __name__ == '__main__':
start()
start()

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="")
@ -138,4 +140,4 @@ def nano(args):
editor = TextEditor()
editor.file = filename
editor.load_file(filename)
editor.edit()
editor.edit()