mastodon.sdf.org is part of the decentralized social network powered by Mastodon.
"I appreciate SDF but it's a general-purpose server and the name doesn't make it obvious that it's about art." - Eugen Rochko

Administered by:

Server stats:

2.6K
active users

Learn more

@screwtape

This will be very rambly and informal and free-format and approximate, but someone might like it...

TECO has been around a long time. It was certainly around when I arrived on the MIT scene 1977-ish. But probably a long time before.

You asked what people used as a screen editor and I have to laugh. TECO was not really a screen editor, but was the implementation substrate for original Emacs. I'll tell the story I know.

TECO had commands that were single character (mostly, though some composed) and you did a set of commands and then could ask to see what you did. Usually, because it also worked on a paper terminal (which recorded everything you typed onto reams of paper), you saw maybe one line of context and then made some change. Some people did really long lives with entire defuns on one line. But it kind of didn't matter. c was the command to move foward. d to delete a character. 3c-4d would go forward 3 characters and delete 4 characters backward. You ended your command with Esc Esc (which echoed as $$) so 3c-4d$$ would show you the edited line and then you'd do more. A single Esc was a command separator or terminator, but two caused it to go.

You could put "macros" (really just strings of commands) in a thing called a q-register (really just a variable, except primitive Teco had no variables). The q-registers were so-called because they were named q0, q1, etc. and also qA, qB, ... qZ. You could put something in them with u. 5uA puts 5 into qA. Some commands were modifiable with @ or : (like in format strings in CL). So while ifoo$ would insert foo into the buffer at the current point, :i05c-4d$ would not insert anything in the buffer but would instead insert '5c-4d' into q0. So once you have strings in q registers you could execute them with m, as in m0 which would execute my sample string from above.

At some point, they changed it on glass (non-paper) screens to show you the buffer as edited, but still it was not doing the WYSIWYG thing. You saw part of a buffer with /\ as a cursor. So /\foo if the cursor was before foo. And Steele suggested that if there was a q-register assigned to each key, you could have it run that macro on hitting that key, which was the origin of emacs ^R (control-R) mode, ^R being the command that would get you into it. R for "real-time" mode. Stallman implemented it. I don't know who thought up the naming, probably Stallman.

The key bindings were on specially named new q-registers that had dots in their names. I think q^RA, q^RB, etc. where ^R was a control-R character. For control-A, q^R.A, for meta-A, q^R..A, etc. and for c-m-A q^R...A, so that allowed binding all the keys.

And at that point you had a realtime mode that was emacs-like. People could have init files that loaded up any of the q-registers with their own bindings, and there were library formats created so people could pre-load complicated definitions.

There was a lot of competition for whose library bindings would win out. Emacs was not the only early offering. Whole other packagings were available from various people. But eventually there was a mostly-consensus on a lot of it, and the rest became libraries on that.

TECO, especially the MIT variant, looks a bit like line noise since nearly every character was a command. But fortunately in libraries the style was to include code on the first half of the line and use the last half of the line as a comment explaining it. Here's a pointer to a library I wrote in TECO that tried to emulate some of the Lisp Machine's mail reader Zmail. If you want to see how the language worked by just kind of letting it roll past you.

pdp-10.trailing-edge.com/mit_e

#LispyGopher #TECO #history

PDP-10 Archive: emacs/zbabyl.emacs from mit_emacs_170_teco_1220pdp-10.trailing-edge.com

@kentpitman @screwtape Interesting! I use vim and don't know much about emacs, but this sounds a lot like the ed/ex/vim lineage to me. I'm not sure if they have a common origin or just originate from common constraints?

@i_dabble
that's what I was imagining somewhere else, that in vi
o3hd2w^["add stores a macro in the 'a register that moves the cursor 3 places left then deletes the next two words. So so far at least I am imagining that vi (screen editor companion to ex) and teco had similarities. I don't know how much vi just maps onto teco yet though. @larsbrinkhoff @ldbeth @kentpitman

@screwtape @i_dabble @ldbeth @kentpitman Recently there was a post to The Unix Heritage Society mailing list that explained that Bill Joy was inspired by Emacs and had an MIT hacker on hand to explain things. tuhs.org/pipermail/tuhs/2024-O

[TUHS] On computerese www.tuhs.org

@screwtape @i_dabble @ldbeth @kentpitman There's also this email from Bill Joy about vi being inspired by DOC, an MIT macro package for TECO.

@larsbrinkhoff

Interesting. I see no mention of this on vi's Wikipedia page. I searched for Pratt, doc (5 untelated matches), and teco.

Also curious the Wikipedia tracks influences from programming languages to one another but not (that I see at quick glance) from various editors or databases.

If you're not up to changing the entry, maybe at least drop something on the talk page if it's not there already. I was too lazy to look -- other things (US election) keeping me up tonight

cc @screwtape @i_dabble @ldbeth

Lars Brinkhoff

@kentpitman @screwtape @i_dabble @ldbeth This seems like the kind of thing Wikipedia policy won't allow as a source. But a talk page entry can be done.