How do I make a command line text editor?
Asked Answered
S

10

23

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?

Synaeresis answered 27/3, 2009 at 2:19 Comment(4)
if you find ongoing projects, please do let us know. I'd love to see a vim-like editor written in python and using python as scripting language...Licking
Have a look at SuplemonWinniewinnifred
@CiroSantilli新疆再教育营六四事件法轮功郝海东 pyvimMartyrize
@GiorgosXou I think that editor might not support python scripting currentlyLicking
N
26

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

Naseberry answered 27/3, 2009 at 2:28 Comment(3)
Kids today! When I was learning to code, we didn't have curses, we had teletypes!Manage
Back in my young day we had to hand-make circuit boards before we even started ;PRejoinder
Back in my day, we used cogs and steam to reveal and conceal 1-foot square pixels on vast, bonfire-backed displays that stretched miles, and the whole thing was pointless unless you had a trained team of at least 100 gnomes.Tallbott
G
10

Take a look at Curses Programming in Python and this as well.

Gates answered 27/3, 2009 at 2:29 Comment(0)
K
8

Another option if you want to write a TUI (Text User Interface) without having to descend to curses is Snack, which comes with Newt.

Kissee answered 27/3, 2009 at 2:48 Comment(0)
M
7

Kids today! Sheesh! When I was starting out, curses was not in widespread use!

My first text editors worked on actual mechanical Teletype devices with actual paper (not a philosophical "TTY" device with a scrolling screen!)

This still works nicely as a way to edit.

Use the cmd module to implement a bunch of commands. Use the 'ex' man page for hints as to what you need. Do not read about the vi commands; avoid reading about vim.

Look at older man pages for just the "EX COMMANDS" section. For example, here: http://www.manpagez.com/man/1/ex/.

Implement the append, add, change, delete, global, insert, join, list, move, print, quit, substitute and write commands and you'll be happy.

Manage answered 27/3, 2009 at 11:20 Comment(2)
My first interaction with a "computer" was over an acoustically coupled remote TTY. Alas, it was a mainframe at Dad's office, and I was not allowed to do anything interesting with it.Blackheart
My first TTY's were hard-wired. Probably 110 BAUD. I remember when 300 BAUD was a big deal.Manage
Y
5

Curses type libraries and resources will get you into the textual user interfaces, and provide very nice, relatively easy to use windows, menus, editors, etc.

Then you'll want to look into code highlighting modules for python.

It's a fun process dealing with the limitations of textual interfaces, and you can learn a lot by going down this road. Good luck!

-Adam

Yesteryear answered 27/3, 2009 at 2:30 Comment(2)
Thanks -- do you have any good recommendations for said code highlighting modules? I was poking around the pygments documentation, but that didn't look like it was built for real-time syntax highlighting. Can pygments do real-time syntax highlighting, or are there other modules I should check out?Synaeresis
Pygments can do real-time but may be a bit inefficient.Messiaen
L
3

I would recommend the excellent urwid toolkit (http://excess.org/article/2009/03/urwid-0984-released) - it's much easier to use than straight curses.

Leftover answered 27/3, 2009 at 2:47 Comment(0)
L
2

Well, what do you mean by a GUI? If you just want to create something that can be used on a console, look into the curses module in the Python standard library, which allows you to simulate a primitive GUI of sorts on a console.

Lenette answered 27/3, 2009 at 2:29 Comment(0)
B
2

A not very serious suggestions: a line editor can be implemented without curses.

These things are pretty primitive, of course, and not a lot of fun to work in. But they can be implemented with very little code, and would give you a chance to fool around with various schemes for maintaining the file state in memory pretty quickly.

And they would put you in touch with the programmers of the early seventies (when they had teletypes and the first glass teletypes, but after punched cards were a bit passe...).

Blackheart answered 27/3, 2009 at 3:0 Comment(0)
I
2

Not quite a reference to a Python library, but The Craft of Text Editing by Craig A. Finseth might be of interest you.

Introit answered 27/3, 2009 at 3:59 Comment(0)
B
0

Another option without curses is Python Slang

Newt is a library written on top of Slang.

Borroff answered 28/5, 2009 at 1:26 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.