Steno Lisp Editing Model

See Chalsed

Steno lisp editing model. For a more generic lisp-independent version of this, see steno editing model.

2 elements make up a lisp program: words and collections.

Words are character-based. Symbols and keywords are almost exclusively just characters. Numbers are also just characters. Both of these have a few syntactic rules, like a : before a keyword and a . for a decimal point in a number, but these are obvious and can be handled by the programmer.

Collections are not character based. A list is a list of elements, not a list of characters. Those elements themselves may be character based, but the list itself is most certainly not.

To treat collections as characters is complex.

Editing

You edit code by zooming in on collections and their constituent elements. You do not edit code by moving a text cursor around. A text cursor is character-based, meaning it can’t handle collections.

In normal mode, you write characters. If you want a list, you type a paren. In selection mode, you work with elements. Words are handled as words, and collections are handled as collections.

At any given time, in selection mode, you have 2 selections: a word and it’s surrounding collection.

With multiple selections, you lower the number of movement strokes you need to get to anywhere. This does make strokes larger, but that’s a price worth paying.

Word editing