From e416f28567eedd754c2531955ba30ac1a68ead62 Mon Sep 17 00:00:00 2001
From: Joseph Ferano
Date: Sat, 12 Sep 2026 04:25:58 +0700
Subject: [PATCH] The site's key table, after the keymap moved under it
The prose lane branched before the CIDER buffers landed, so the page still
described C-c C-b as the minibuffer prompt. It is the conditions buffer now, the
prompt moved to C-c C-M-b, and C-c C-i, C-c C-a and C-c C-g are missing
entirely.
Checked against the real keymap rather than against the source: loading
flan-mode in a batch Emacs and asking key-binding what each one resolves to.
That is what caught C-c C-g being unbound - flan-dape.el registers it from its
own file so that flan-mode still works without dape installed - so the row says
so rather than claiming a binding that is not there.
---
web/index.html | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/web/index.html b/web/index.html
index 24477f1..5ec6791 100644
--- a/web/index.html
+++ b/web/index.html
@@ -1206,7 +1206,11 @@ there is no parser in it.
| C-c C-z / C-c C-q | connect (finds .flan-dev.sock upward) / disconnect |
| C-c C-o | the running program's own output, in *flan-output* |
| C-c C-r | a prompt on the running program (*flan-repl*) |
-| C-c C-b | what a stopped program is offering, and which to take |
+| C-c C-b | a stopped program: the condition, the restarts, the stack |
+| C-c C-M-b | the same restarts, as a one-key prompt |
+| C-c C-i | inspect a value, navigating into its fields |
+| C-c C-a | disassemble a function; C-u first for its LLVM IR |
+| C-c C-g | debug under lldb, through dape — bound only once flan-dape.el is loaded, so flan-mode works without dape installed |
| C-c C-d | what the running program currently defines |
| C-c C-v | help on the name at point |
| C-c C-x | rebuild, relaunch and reconnect — the way out when a reload is refused |