A Steno Editing “keybinding” model.
Modal editing makes a lot of sense when you have a very limited number of unique strokes at your disposal, say only ~30 keys on a qwerty keyboard.
Being in a mode adds context to every action you perform. This means you don’t need to hold down a mod key, or add an additional prefix key to your actions, in order for them to be unique.
With steno, you have over 24 million available strokes at any given time, this is more than enough. Requiring an entire stroke or dedicated key to switch modes is a problem.
Instead of having one mode where everything is done, you have one additional mode: selection mode.
In selection mode, you move and extend what you’re selecting.
With a selection, you can perform selection actions, such as deleting, copying, pasting, etc.
Whenever you use a movement stroke, you will be placed in selection mode if you’re not already in it, and you’ll start extending your selection, much like holding shift while using arrow keys.
To leave selection mode, just start typing again. This will throw away your selection, and bring your text cursor to wherever it was in the selection.
This avoids requiring any strokes to enter and leave selection mode. Just start moving around to extend your selection, and start typing to void your selection. As long as your movement strokes and selection mode action strokes are not used in normal writing, no mode switching is required.
I use the P
, W
, and H
keys for selection mode actions (past, yank, and delete respectively), as these are not legal strokes in onyx, meaning they can’t be used in normal typing anyway.
The differences between selection mode and non-modal selection are that:
In order for this to work, your editor needs to be able to differentiate movement strokes and selection mode action strokes from normal typing. This can be done in several ways. I’m still trying to figure out what the best way to do this is.
Essentially, just separate typing from movement and selection, and allow any other needed strokes to be independent of those things (saving the file, et al).