No description
Find a file
2023-07-06 11:18:29 -05:00
adafruit_editor move into package format 2023-07-06 11:18:29 -05:00
examples move into package format 2023-07-06 11:18:29 -05:00
LICENSES add pre-commit, finish making code conform 2023-07-06 11:13:32 -05:00
.gitignore add pre-commit, finish making code conform 2023-07-06 11:13:32 -05:00
.pre-commit-config.yaml add pre-commit, finish making code conform 2023-07-06 11:13:32 -05:00
.pylintrc add pre-commit, finish making code conform 2023-07-06 11:13:32 -05:00
README.md Add REUSE headers, update README 2023-07-06 11:06:34 -05:00

editor

A minimal terminal text editor for CircuitPython written in Python with a tiny curses subset called "dang".

Check out the accompanying tutorial for the original editor

... How to build a text editor with Python and curses, which walks you through series of fifteen incremental coding problems concluding in a minimal text editor.

The tutorial was featured in Episode 221 of the PythonBytes podcast by Michael Kennedy and Brian Okken.

Credits

Many thanks to the following people and projects for sharing their great work, upon which a lot of this was based!

  • Wasim Lorgat (@seeM), from whom the CircuitPython version is forked
  • Many thanks to Pavel Spirhanzl and Alexandre Pajak for their keen eyes in identifying bugs in early versions.
  • Gary Bernhardt's Text Editor From Scratch screencast.
  • Anthony Sottile's babi.
  • nano source.
  • Emacs source. In my opinion, the best way to explore the source is through Emacs' built-in help commands.