Skip to content

Instantly share code, notes, and snippets.

View H0R5E's full-sized avatar
🐴

Mathew Topper H0R5E

🐴
View GitHub Profile
@Fronkan
Fronkan / editor.py
Last active July 31, 2025 10:22
A code editor written using textual for a lightning talk. The editor was live-coded and presented in less than 10 minutes.
""" Simple code editor using textual. Live coded during the lightning talk in about 7 minutes
"""
from argparse import ArgumentParser
from pathlib import Path
from textual.app import App
from textual.widgets import TextArea, DirectoryTree
from textual.containers import Horizontal
class Editor(App):