This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" 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): |