From 1d23e6dd1d13b0fb1c9dade0fe14a15dfd67e4d0 Mon Sep 17 00:00:00 2001 From: Bill Stumbo Date: Fri, 18 Oct 2024 23:58:17 -0400 Subject: [PATCH 1/2] Add type definition to page to it renders correctly. --- .../en/software/using-medley/keystrokes.md | 21 ++++++++----------- 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/content/en/software/using-medley/keystrokes.md b/content/en/software/using-medley/keystrokes.md index 60231cb40..f9c794b31 100644 --- a/content/en/software/using-medley/keystrokes.md +++ b/content/en/software/using-medley/keystrokes.md @@ -2,6 +2,7 @@ title: Keystrokes, Mouse menus and Gestures url: /software/using-medley/keystrokes/ weight: 40 +type: docs aliases: - /doc/info/Keystrokes.html --- @@ -11,7 +12,7 @@ The handling of keyboard and mouse clicks and gestures is different and varied w We'd like to improve keyboard handling but haven't yet found a path. -## At an "exec" (i.e., the REPL). +## At an "exec" (i.e., the REPL). |character |action | |----------|--------------------------------| @@ -25,15 +26,11 @@ 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". - -|character|action | -|---------|----------------------------------------- | -|ctrl-B |stop the process and enter a break window | -|ctrl-D | reset the process, unwind the stack to the top level | -|ctrl-E | unwind the stack as if an error occured without break| -|ctrl-P | interrupt printing and reset the PRINTLEVEL | - - - +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". +|character|action | +|---------|----------------------------------------- | +|ctrl-B |stop the process and enter a break window | +|ctrl-D | reset the process, unwind the stack to the top level | +|ctrl-E | unwind the stack as if an error occurred without break| +|ctrl-P | interrupt printing and reset the PRINTLEVEL | From d72d64f5be02305575559e21c1cd895280076d47 Mon Sep 17 00:00:00 2001 From: Bill Stumbo Date: Sat, 19 Oct 2024 18:52:06 -0400 Subject: [PATCH 2/2] Propose need working on interrupts --- .../en/software/using-medley/keystrokes.md | 27 ++++++++++++------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/content/en/software/using-medley/keystrokes.md b/content/en/software/using-medley/keystrokes.md index f9c794b31..29017050a 100644 --- a/content/en/software/using-medley/keystrokes.md +++ b/content/en/software/using-medley/keystrokes.md @@ -2,7 +2,6 @@ title: Keystrokes, Mouse menus and Gestures url: /software/using-medley/keystrokes/ weight: 40 -type: docs aliases: - /doc/info/Keystrokes.html --- @@ -12,7 +11,7 @@ The handling of keyboard and mouse clicks and gestures is different and varied w We'd like to improve keyboard handling but haven't yet found a path. -## At an "exec" (i.e., the REPL). +## At an "exec" (i.e., the REPL). |character |action | |----------|--------------------------------| @@ -26,11 +25,21 @@ 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 | +|---------|----------------------------------------- | +|ctrl-B |stop the process and enter a break window | +|ctrl-D | reset the process, unwind the stack to the top level | +|ctrl-E | unwind the stack as if an error occured without break| +|ctrl-P | interrupt printing and reset the PRINTLEVEL | + + + -|character|action | -|---------|----------------------------------------- | -|ctrl-B |stop the process and enter a break window | -|ctrl-D | reset the process, unwind the stack to the top level | -|ctrl-E | unwind the stack as if an error occurred without break| -|ctrl-P | interrupt printing and reset the PRINTLEVEL |