Commenting

This commit is contained in:
Bruce Hill 2020-04-25 21:48:39 -07:00
parent b9bad81b80
commit 5c82246632

View File

@ -1,4 +1,14 @@
#!/usr/bin/env python3
#
# bed - the BTUI editor
#
# This is a simple example program demonstrating a minimal text editor
# implemented with the Python BTUI bindings.
#
# Usage: ./bed.py [-d|--debug] <file>
# You can move around with arrow keys, PgUp/PgDn and make basic file edits.
# Save with Ctrl-S, Quit with Ctrl-Q or Ctrl-C
#
import sys
from btui import open_btui
from collections import namedtuple