Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add type definition to page to it renders correctly. #246

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion content/en/software/using-medley/keystrokes.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ We'd like to improve keyboard handling but haven't yet found a path.

## Interrupt characters

These are enabled per-process. Medley maintains, for each process, a "termtable" which enables different kinds of interrupts. In general, the process (sometimes known as the "TTY" process or the process that "has the keyboard".
These are enabled per-process. Medley maintains, for each process, a "termtable" which enables different kinds of interrupts.

Usually, the user wants interrupts to occur in the TTY process, which is the one
currently receiving keyboard input. However, sometimes the user wants to interrupt
the mouse process, if it is currently busy executing a menu command or waiting
for the user to specify a region on the screen. Most of the interrupt characters
below take place in the mouse process if it is busy, otherwise the TTY process.

|character|action |
|---------|----------------------------------------- |
Expand Down