How do I make a command line text editor?

So8res picture So8res · Mar 27, 2009 · Viewed 19k times · Source

I have gotten to know my way around a few programming languages, and I'd like to try my hand at making a command-line text editor -- something that runs in the terminal, like vim/emacs/nano, but is pure text (no guis, please). Preferably, I'd like to do this in python. Where do I start? Are there any (python) libraries to do command-line applications?

Answer

linjunhalida picture linjunhalida · Mar 27, 2009

try python curses module , it is a command-line graphic operation library.