Compare commits

..

2 Commits

Author SHA1 Message Date
Julien Calixte
4aaf89d977 feat(editor): add snippet library, tab-stop engine, and $ palette
Parse the Zed-compatible .typoena.snippets.json (serde_json), strip
${n:label} stops to bare $n, and drive a forward-only tab-stop session.
Expand a prefix inline on Tab in Insert; browse and insert from the
Cmd-P palette via a $ sigil (parallel to the > command mode), landing
on $1 as one undo group.
2026-07-12 10:03:45 +02:00
Julien Calixte
221135cd9b docs(v0.6): specify the snippet library and $/> palette split
Reshape v0.6 snippets from a hard-coded table into a git-synced,
Zed-compatible JSON library (.typoena.snippets.json) with an inline Tab
path and a $ palette launcher. Add the file-format reference and
document the Cmd-P/>/$ verb split and the just init catalog.
2026-07-12 10:03:38 +02:00
4 changed files with 879 additions and 46 deletions

144
docs/typoena-snippets.md Normal file
View File

@@ -0,0 +1,144 @@
# `.typoena.snippets.json` — snippet library
> The git-tracked file that holds your trigger-driven text expansions for
> Markdown authoring. Hand-editable (and Zed-compatible, so you can paste your
> existing snippets straight in), synced across devices like your notes. Landed
> in **v0.6** (see [`macroplan.md`](macroplan.md)). The editing surfaces — inline
> Tab-expansion and the `$` palette — are specified in
> [`v0.6-markdown.md`](v0.6-markdown.md).
>
> **Three files, three concerns, don't confuse them.** `.typoena.snippets.json`
> is *content* (your templates). [`.typoena.toml`](typoena-toml.md) is *behaviour*
> (auto-save, gutter). `/sd/typoena.conf` is *secrets* (Wi-Fi, PAT), gitignored
> and never committed. The first two live in the repo and sync; the third is
> per-device.
## Location
```
/sd/repo/.typoena.snippets.json
```
It sits in the Tracked repo beside [`.typoena.toml`](typoena-toml.md), so it is
**committed and pushed** like any note and **syncs to every device** that clones
the repo. Your snippet library follows you. It is read **once at boot**; a
**missing, empty, or malformed file is fine** — you simply have no snippets, and
the editor runs unchanged.
## Format
Deliberately **Zed's snippet JSON shape**, so the contents of a Zed
`snippets/markdown.json` paste in unmodified:
```json
{
"Markdown link": {
"prefix": "link",
"body": "[$1]($2)$0",
"description": "Inline link"
},
"Book notes": {
"prefix": "fiche",
"body": ["# $1", "", "## $2 — $3", "", "## What the book is about", ""],
"description": "Fiche de lecture"
}
}
```
- The top-level key is the **display name** (what the `$` palette shows).
- `prefix` — the word that triggers inline Tab-expansion.
- `body` — a **string**, or an **array of lines** joined with `\n` (Zed's form;
it sidesteps embedded-newline escaping and reads cleanly for multi-line
templates).
- `description` — optional but recommended: the `$` palette fuzzy-matches it and
shows it, so it is how you find a snippet you don't remember the prefix for.
### Tab stops
A body is literal text plus numbered stops:
- `$1 … $n` — empty stops the caret visits in order.
- `$0` — the final resting place (defaults to the end of the insertion if absent).
- `${n:label}`**accepted, but the label is stripped** to a bare `$n`. The
editor has no selection/overtype model, so a label would just be text to
delete; on a device with no completion popup it could never be shown as a
prompt anyway. The **headings and structure carry the template** — the labels
were only hints. This is what lets a Zed file with `${1:Titre}` load as-is.
- **No dynamic or computed values** (no `date`, no `clipboard`). There is no RTC
— the wall clock is valid only after Wi-Fi + SNTP, so a `date` snippet would
stamp 1970 on a cold boot. A stop is empty or it is literal; nothing else.
## The two surfaces
Every snippet works both ways — there is **no hidden two-tier rule** where some
are "inline only" and some are "palette only". Inline Tab is the fast path you
reach for once a prefix is in muscle memory; the `$` palette is discovery.
### Inline Tab-expansion (Insert mode)
Type a prefix, press **Tab**. If the word immediately before the caret matches a
snippet prefix, it expands; otherwise Tab inserts spaces as it does today. (Tab
arrives as an ordinary character, so this is a check inside the Insert-mode
handler, alongside the existing list-continuation transform.)
On a **typing pause** — the same throttle as the word-count / cursor refresh, so
never a per-keystroke e-ink flash — if the word before the caret is a prefix, the
right side panel shows a quiet hint (`↹ fiche de lecture`). The panel is ~17
columns, so the hint is the **snippet name / first line**, not the whole body;
the full preview is what the `$` palette is for.
### `$` palette (browse + insert)
Open the palette (`Cmd-P`) and type **`$`** — the same sigil mechanism as `>` for
commands. The query after the `$` fuzzy-matches name, prefix, and description;
`Ctrl-N`/`Ctrl-P` move the selection; **Enter inserts the body at the caret** and
starts the tab-stop session (dropping you into Insert at `$1`). The empty-palette
placeholder legends the sigils: `Go to file · > settings · $ snippets`.
## The tab-stop session
Identical whether the snippet was expanded inline or inserted from the palette:
- After insertion the caret lands on **`$1`** (or the end, if the body has no
stops), in **Insert** mode.
- **Tab advances** to the next stop, **forward only** (no Shift-Tab). The last
Tab lands on `$0` / the end and ends the session.
- Pending stop offsets sit **after the caret** and shift with the edits you make
at each stop, so typing at `$1` keeps `$2 … $n` correctly placed.
- The session **auto-aborts** on Esc, a mode change, or a motion that leaves the
stop range — after which the buffer is just text and Tab inserts spaces again.
## Parsing
The parse lives in the host-testable `editor` crate (`Snippets::parse`), using
`serde_json` — JSON string escapes (`\n`, `\"`, `\uXXXX`) are a foot-gun to
hand-roll, and `serde_json` is battle-tested; the editor crate is `std`, so it
compiles for xtensa via esp-idf. This is the **one new dependency** the feature
adds. The firmware reads the file at boot and hands the parsed list to
`Editor::set_snippets`, mirroring how `.typoena.toml` is read and applied via
`set_prefs`. A parse error is **non-fatal**: log it and boot with no snippets,
rather than refusing to start over a stray comma.
## Editing it
- **On your computer (the normal path).** It's plain JSON in your notes repo —
edit it in your real editor, copy entries over from Zed, commit, and it reaches
the device on the next clone/sync. This is deliberately where the heavy editing
happens; the appliance is for writing, not for maintaining a JSON library.
- **First-time setup.** [`just init`](../firmware/README.md#provisioning-an-sd-card)
seeds this file from a curated catalog — you pick which snippet groups you
want and it writes the selected subset into `repo/.typoena.snippets.json`
(committed on the device's first `:sync`). See
[`v0.6-markdown.md`](v0.6-markdown.md) for the catalog.
- **On-device hand-edit — deferred.** The palette hides dotfiles, and `:e` was
dropped in v0.6, so there is no in-editor path to this file yet. When one is
wanted it returns as a discoverable `> edit snippets` command that opens the
file directly, rather than resurrecting a general `:e`.
## See also
- [`v0.6-markdown.md`](v0.6-markdown.md) — the editing surfaces, the `$`/`>`
palette model, and the setup-recipe snippet catalog.
- [`typoena-toml.md`](typoena-toml.md) — the sibling prefs file this is kept
separate from, and the `>` command palette snippets share the surface with.
- [`macroplan.md`](macroplan.md) — v0.6 scope.

View File

@@ -3,36 +3,93 @@
> Part of the [Typoena macro plan](macroplan.md). Requirements and targets:
> [qfd.md](qfd.md). Load-bearing decisions: [adr.md](adr.md).
**Status:** render affordances done early; the snippet
engine remains (snippets are net-new scope, added 2026-07-08).
**Status:** render affordances done early; the snippet engine is the remaining
work (snippets are net-new scope, added 2026-07-08; reshaped 2026-07-12 from a
hard-coded table into a git-synced, Zed-compatible library with a `$` palette
launcher — see [`typoena-snippets.md`](typoena-snippets.md) for the file format).
- [x] Heading lines bolded in render (faux-bold double-strike)
- [x] List continuation on Enter inside `- ` / `1. ` (with empty-item exit)
- [x] Soft-wrap at word boundaries
- [ ] **Snippets** — trigger-driven text expansion for Markdown authoring
(Zed-inspired, but no completion popup: e-ink's ~630 ms refresh rules out
a live filtering menu, and it fights the distraction-free premise). Shape,
mirroring the existing `list_marker` insert-transform:
- [ ] Tab in Insert mode triggers expansion: if the word immediately before
the caret matches a snippet prefix, expand it; otherwise insert spaces
as today (`expand_snippet(word) -> Option<(body, stops)>`, alongside
`list_marker`).
- [ ] A snippet body is literal text plus numbered empty tab stops `$1 … $n`
and a final `$0`. There is no placeholder text (`${1:label}`) — the
editor has no selection/overtype model, so a placeholder would just be
text to delete. There are no dynamic or computed values either (e.g. no
`date` — there's no RTC; the wall clock is valid only after Wi-Fi+SNTP,
so it'd stamp 1970 on a cold boot).
- [ ] After expansion the caret lands on `$1`; Tab advances to the next stop,
forward only (no Shift-Tab). Stored stop offsets shift with edits at the
caret (all pending stops are always after it). The session auto-aborts
on Esc, a mode change, or a motion that leaves the stops.
- [ ] On a typing pause (same throttle as the insert cursor / word-count
refresh — the panel never repaints per keystroke), if the word before
the caret is a snippet prefix, the side panel shows the hint (the target
expansion). Quiet while typing; the hint appears on pause.
- [ ] The snippet table is hard-coded in the binary to start; a git-syncable
file on SD (`/sd/repo/.snippets`) is a later option, deferred while SD
is still blocked.
- [ ] Starter set: link `[$1]($2)$0`, image `![$1]($2)$0`, fenced code block,
etc.
## Snippets
Trigger-driven text expansion for Markdown authoring (Zed-inspired, but **no
completion popup**: e-ink's ~630 ms refresh rules out a live filtering menu, and
it fights the distraction-free premise). The library is a git-synced,
Zed-compatible JSON file — full file-format reference in
[`typoena-snippets.md`](typoena-snippets.md). This section is the *editor*
behaviour.
- [x] **The tab-stop engine** — the shared core both surfaces drive. A body is
literal text plus numbered stops `$1 … $n` and a final `$0`; on insertion
the caret lands on `$1` (or the end), in Insert. Tab advances to the next
stop, **forward only** (no Shift-Tab); pending stops sit after the caret
and shift with edits there. The session auto-aborts on Esc, a mode change,
or a motion that leaves the stops. `${n:label}` parses to a bare `$n` (the
label is stripped — no selection model to fill); no dynamic values (no RTC,
so no `date`).
- [x] **Inline Tab-expansion (Insert mode).** If the word immediately before the
caret matches a snippet prefix, Tab expands it and starts the tab-stop
session; otherwise Tab inserts spaces as today. A check in the Insert
handler alongside the existing `list_marker` transform
(`expand_snippet(word) -> Option<Snippet>`). Tab already arrives as
`Key::Char('\t')`, so no new key event.
- [ ] **Hint-on-pause.** On the typing pause (same throttle as the word-count /
cursor refresh — never a per-keystroke repaint), if the word before the
caret is a prefix, the right side panel shows a quiet hint. The panel is
~17 cols, so the hint is the snippet **name / first line**, not the whole
body — the full preview is the `$` palette's job.
- [x] **`$` palette (browse + insert).** `Cmd-P` then `$` switches the palette to
the snippet list (the same sigil mechanism as `>`). Fuzzy-matches name /
prefix / description; Enter inserts the body at the caret and starts the
tab-stop session. Lists **all** snippets — the fuzzy filter handles clutter,
so there's no hidden "inline-only vs palette-only" split. Rows read
`Name [prefix]`, so browsing also teaches the inline trigger.
- [ ] **Boot wiring.** The host reads `/sd/repo/.typoena.snippets.json` at boot
and calls `Editor::set_snippets` (mirroring `set_prefs`); a missing or
malformed file is non-fatal (no snippets, editor runs). Parse lives in the
host-testable `editor` crate via `serde_json` — the one new dependency.
## The palette, generalised (`Cmd-P` · `>` · `$`)
v0.5 shipped `Cmd-P` = files and `>` = a five-entry settings list (`save_on_idle`,
`format_on_save`, `line_numbers` toggles + `theme`/`auto_sync` rotations). v0.6
makes the sigils a clean split by verb, and the empty-palette placeholder legends:
`Go to file · > settings · $ snippets`.
- **bare `Cmd-P`** → *navigate*: go to file (unchanged).
- **`>`** → *act on the editor* — the command palette. The pref toggles are just
its stateful entries, not a special section. Dispatch differs per entry: a
**toggle** flips and the list **stays open** (as today); a **one-shot** (e.g.
`format`, `publish`) runs and **closes**; a **parameterised** command morphs
the palette into a second **input step** (select `New file` → the box becomes a
filename prompt → Enter creates it, scope read from a `repo/`/`local/` prefix as
`:enew` does today). This retires `:e` (bare `Cmd-P` covers file-opening;
dotfiles get a dedicated `> edit …` command if/when wanted).
- **`$`** → *insert content* — the snippet launcher above.
`format` / `publish` as `>` entries are a small opportunistic add (they prove `>`
is a real action registry, not a settings box); the headline is snippets.
## First-time setup — snippet catalog (`just init`)
[`just init`](../firmware/README.md#provisioning-an-sd-card) gains a step that
seeds the two git-tracked config files into `repo/` (so they commit + sync on the
device's first `:sync`): a starter [`.typoena.toml`](typoena-toml.md) (the four
keys at their defaults, or confirmed at a prompt) and a
[`.typoena.snippets.json`](typoena-snippets.md) chosen from a **curated catalog**
checked into the repo. The catalog is grouped and opt-in — you pick the groups
you want rather than getting all of one writer's personal templates. Not every
Zed snippet is worth proposing: the Slidev/blog-pipeline ones (`@[youtube]`,
`<v-clicks>`, frontmatter, mermaid) and render-dependent or hyper-specific ones
are left out of the menu, since a distraction-free prose appliance can't render
them and you'd never miss them. **Proposed groups (pending sign-off):**
- [ ] **Symbols** (inline, keyboard can't type them): `fleche``→`,
`different``≠`, `fois``×`, `median``·`, `degre``°`, `euro``€`,
`edanso``œ` (dead keys in v0.2.5 cover accents, *not* these).
- [ ] **Structure**: `todo``- [ ] `, `link``[$1]($2)$0`, `img``![$1]($2)$0`
(net-new — obvious for Markdown), `table`, `code` (fenced block).
- [ ] **Prose / PKM templates** (`${n:label}` stripped to `$n`): `fiche`
(book notes), `reference`/`refangl` (reference block), `biais`,
`capture`, `standard`, `5w1h`.

View File

@@ -8,3 +8,8 @@ description = "Modal (vim-style) text-editor core: the buffer, motions, edits, a
embedded-graphics = "0.8"
display = { path = "../display" }
keymap = { path = "../keymap" }
# Snippet library parse (v0.6): the `.typoena.snippets.json` file uses Zed's JSON
# shape. serde_json handles the string-escape corner cases a hand-rolled reader
# would get wrong; the crate is `std` (esp-idf provides std on xtensa).
serde = { version = "1", features = ["derive"] }
serde_json = "1"

View File

@@ -298,6 +298,161 @@ fn next_option<'a>(current: &str, options: &[&'a str]) -> &'a str {
}
}
/// The git-tracked snippet library, read at boot like [`PREFS_PATH`]. The host
/// reads this file and hands the parsed list to [`Editor::set_snippets`]; a
/// missing or malformed file is non-fatal (no snippets, editor runs). It lives in
/// the Tracked repo so the library syncs across devices. Full format reference:
/// `docs/typoena-snippets.md`.
pub const SNIPPETS_PATH: &str = "/sd/repo/.typoena.snippets.json";
/// One snippet: an inline trigger [`prefix`](Snippet::prefix), a
/// [`body`](Snippet::body) carrying `$1..$n`/`$0` tab stops, and a
/// [`name`](Snippet::name)/[`description`](Snippet::description) the `$` palette
/// shows. Parsed from the Zed-compatible JSON by [`Snippets::parse`].
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Snippet {
/// Display name — the top-level JSON key. What the `$` palette lists.
pub name: String,
/// The word that triggers inline Tab-expansion.
pub prefix: String,
/// Literal body text with `$1..$n`/`$0` stops. `${n:label}` placeholders are
/// stripped to bare `$n` at parse time (no completion popup to show a label,
/// no overtype model to fill it) — see [`strip_stop_labels`].
pub body: String,
/// Human description; the `$` palette fuzzy-matches and shows it. Empty if the
/// JSON entry omits it.
pub description: String,
}
/// A parsed snippet library. [`parse`](Snippets::parse) reads the Zed JSON shape;
/// [`Editor::set_snippets`] installs it.
#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct Snippets(pub Vec<Snippet>);
/// The Zed JSON value for one snippet: `body` is a string or an array of lines.
#[derive(serde::Deserialize)]
struct RawSnippet {
prefix: String,
body: RawBody,
#[serde(default)]
description: String,
}
#[derive(serde::Deserialize)]
#[serde(untagged)]
enum RawBody {
/// `"body": ["line", "line"]` — Zed's multi-line form (joined with `\n`).
Lines(Vec<String>),
/// `"body": "one line"`.
Text(String),
}
impl Snippets {
/// Parse the Zed-compatible `.typoena.snippets.json`: an object keyed by
/// display name, each value `{ prefix, body, description? }` where `body` is a
/// string or an array of lines. Labels in `${n:label}` stops are stripped to
/// `$n`. Entries come back sorted by name (a `BTreeMap` parse — deterministic,
/// and the empty-`$` palette order; a query re-ranks by fuzzy score anyway). A
/// malformed file is an `Err` the host logs before booting with no snippets.
pub fn parse(src: &str) -> Result<Self, serde_json::Error> {
let raw: std::collections::BTreeMap<String, RawSnippet> = serde_json::from_str(src)?;
let snippets = raw
.into_iter()
.map(|(name, r)| {
let body = match r.body {
RawBody::Text(s) => s,
RawBody::Lines(v) => v.join("\n"),
};
Snippet {
name,
prefix: r.prefix,
body: strip_stop_labels(&body),
description: r.description,
}
})
.collect();
Ok(Self(snippets))
}
}
/// Rewrite `${n:label}` (and `${n}`) tab stops to a bare `$n`, leaving plain
/// `$n`/`$0` and every other `$` untouched. The editor has no completion popup to
/// surface a label and no selection/overtype model to fill one, so the label is
/// only noise to delete — dropping it is what lets a Zed snippet file with
/// `${1:Titre}` load unchanged. Byte-indexed but UTF-8-safe: it only ever indexes
/// the ASCII `$ { } :` and digits; any multi-byte char is copied whole.
fn strip_stop_labels(body: &str) -> String {
let b = body.as_bytes();
let mut out = String::with_capacity(body.len());
let mut i = 0;
while i < body.len() {
if b[i] == b'$' && i + 1 < body.len() && b[i + 1] == b'{' {
// Read the digits right after "${".
let mut j = i + 2;
while j < body.len() && b[j].is_ascii_digit() {
j += 1;
}
// A numbered placeholder `${<digits>…}` → `$<digits>`, dropping the rest.
if j > i + 2 {
if let Some(close) = body[j..].find('}') {
out.push('$');
out.push_str(&body[i + 2..j]);
i = j + close + 1;
continue;
}
}
// Not a numbered placeholder (or unclosed) — emit the `$` literally.
out.push('$');
i += 1;
continue;
}
let c = body[i..].chars().next().unwrap();
out.push(c);
i += c.len_utf8();
}
out
}
/// Split a snippet body into its literal text (tab-stop markers removed) and the
/// caret **visit order** of those stops as byte offsets into that literal: `$1 …
/// $n` ascending, then `$0` last. If the body has numbered stops but no explicit
/// `$0`, a final stop at the body end is appended (so the last Tab lands past the
/// text). A body with no stops returns an empty stop list (the caret just lands at
/// the end — no session). `$` not followed by a digit is literal.
fn parse_snippet_body(body: &str) -> (String, Vec<usize>) {
let b = body.as_bytes();
let mut literal = String::with_capacity(body.len());
let mut stops: Vec<(u32, usize)> = Vec::new(); // (stop number, offset in `literal`)
let mut i = 0;
while i < body.len() {
if b[i] == b'$' {
let mut j = i + 1;
while j < body.len() && b[j].is_ascii_digit() {
j += 1;
}
if j > i + 1 {
let num: u32 = body[i + 1..j].parse().unwrap_or(0);
stops.push((num, literal.len()));
i = j;
continue;
}
literal.push('$'); // a lone `$` (e.g. a price) is literal text
i += 1;
continue;
}
let c = body[i..].chars().next().unwrap();
literal.push(c);
i += c.len_utf8();
}
// Ensure a final resting stop: `$0` if present, else an implicit one at the end.
if !stops.is_empty() && !stops.iter().any(|&(n, _)| n == 0) {
stops.push((0, literal.len()));
}
// Visit order: $1..$n ascending, $0 (the final rest) last.
stops.sort_by_key(|&(n, _)| if n == 0 { u32::MAX } else { n });
(literal, stops.into_iter().map(|(_, off)| off).collect())
}
/// Resolve a `:e`/`:enew` argument (or palette pick) to an absolute path +
/// [`Scope`]. Everything the writer can reach lives on the card under `/sd`, so
/// the `/sd` prefix is **optional**: `/sd/repo/x`, `/repo/x`, and `repo/x` all
@@ -557,6 +712,17 @@ pub struct Editor {
/// [`palette_matches`](Self::palette_matches), not into [`files`](Self::files)).
/// Reset to 0 whenever the query changes.
palette_sel: usize,
/// The snippet library, fed by the host at boot via
/// [`set_snippets`](Self::set_snippets) from `.typoena.snippets.json`. Empty
/// until fed (and after a missing/malformed file). Drives inline
/// Tab-expansion and the `$` palette.
snippets: Vec<Snippet>,
/// Active snippet tab-stop session: the byte offsets of the **remaining**
/// stops to visit, in order, with the caret sitting on the current one. Empty
/// when no session is running. On each Insert-mode edit the pending offsets
/// shift by the edit's length delta (they are all at/after the caret), so they
/// track the text; Tab pops the next one, and leaving Insert clears them.
snippet_stops: Vec<usize>,
}
/// A resident-but-inactive buffer: everything needed to restore a file's editing
@@ -630,6 +796,8 @@ impl Editor {
recent: Vec::new(),
palette_query: String::new(),
palette_sel: 0,
snippets: Vec::new(),
snippet_stops: Vec::new(),
}
}
@@ -753,6 +921,13 @@ impl Editor {
self.prefs = prefs;
}
/// Install the snippet library the host parsed from [`SNIPPETS_PATH`] at boot
/// (via [`Snippets::parse`]). Mirrors [`set_prefs`](Self::set_prefs): a
/// missing or malformed file simply yields an empty library and no snippets.
pub fn set_snippets(&mut self, snippets: Snippets) {
self.snippets = snippets.0;
}
/// Whitespace-delimited word count of the whole buffer.
fn word_count(&self) -> usize {
self.text.split_whitespace().count()
@@ -799,6 +974,14 @@ impl Editor {
Mode::Palette => self.palette_key(key),
}
// A snippet tab-stop session lives only in Insert. Leaving Insert — Esc,
// or any mode change — ends it (the buffer is then just text, so Tab
// inserts a tab again). The natural end (Tab past the last stop) already
// empties `snippet_stops` while still in Insert.
if !self.snippet_stops.is_empty() && self.mode != Mode::Insert {
self.snippet_stops.clear();
}
if !self.replaying {
self.record_dot(key, before_mode, before_pending);
}
@@ -859,8 +1042,20 @@ impl Editor {
// --- Insert mode -------------------------------------------------------
fn insert_key(&mut self, key: Key) {
// A live snippet session (non-empty `snippet_stops`) makes Tab advance to
// the next stop instead of inserting a tab, and needs its pending offsets
// kept in step with any edit at the caret (below).
let session = !self.snippet_stops.is_empty();
let len_before = self.text.len();
match key {
Key::Char('\t') => self.insert_str(TAB),
Key::Char('\t') if session => self.snippet_advance(),
// Tab expands a snippet if the word before the caret is a prefix;
// otherwise it inserts spaces as before.
Key::Char('\t') => {
if !self.try_expand_snippet() {
self.insert_str(TAB);
}
}
Key::Char(c) => self.insert_char(c),
Key::Enter => self.insert_newline(),
Key::Backspace => self.backspace(),
@@ -880,6 +1075,17 @@ impl Editor {
}
}
}
// Every pending stop sits at/after the caret, so an edit at the caret
// shifts them all by its signed length delta — keeping `$2 … $0` correct
// while you type at `$1`. (Tab-advance and Esc don't change the length.)
if session && !self.snippet_stops.is_empty() {
let delta = self.text.len() as isize - len_before as isize;
if delta != 0 {
for s in &mut self.snippet_stops {
*s = s.saturating_add_signed(delta);
}
}
}
}
// --- Normal mode -------------------------------------------------------
@@ -1556,8 +1762,9 @@ impl Editor {
}
/// Dispatch a key in [`Mode::Palette`]. Typing fuzzy-filters; `Ctrl-n`/`Ctrl-p`
/// (or `Ctrl-d`/`Ctrl-u`) move the selection down/up; Enter opens the selected
/// file; Esc or `Cmd-P` closes. Backspace on an empty query also closes
/// (or `Ctrl-d`/`Ctrl-u`) move the selection down/up; Enter acts on the
/// selection per the leading sigil (open a file, run a `>` command, or insert a
/// `$` snippet); Esc or `Cmd-P` closes. Backspace on an empty query also closes
/// (mirrors the `:` line). Any query edit resets the selection to the top.
fn palette_key(&mut self, key: Key) {
match key {
@@ -1587,19 +1794,18 @@ impl Editor {
self.palette_sel = 0;
}
// Ctrl-n/Ctrl-p move the selection (fzf-style); Ctrl-d/Ctrl-u do too.
// Clamped to the result list (files, or `>` commands).
// Clamped to the current result list (files, `>` commands, `$` snippets).
Key::Down | Key::HalfPageDown => {
let n = if self.palette_command_mode() {
self.palette_command_matches().len()
} else {
self.palette_matches().len()
};
let n = self.palette_len();
self.palette_sel = (self.palette_sel + 1).min(n.saturating_sub(1));
}
Key::Up | Key::HalfPageUp => self.palette_sel = self.palette_sel.saturating_sub(1),
// Enter runs the selected `>` command, or opens the selected file.
// Enter acts on the selection by mode: insert a `$` snippet, run a `>`
// command, or open the selected file.
Key::Enter => {
if self.palette_command_mode() {
if self.palette_snippet_mode() {
self.palette_insert_selected();
} else if self.palette_command_mode() {
self.palette_run_command();
} else {
self.palette_open_selected();
@@ -1735,6 +1941,79 @@ impl Editor {
self.set_notice(format!("{} - saved", self.command_label(cmd)));
}
// --- Palette snippet mode (`$`) ----------------------------------------
/// Whether the palette is in `$` snippet mode. Same sigil mechanism as `>`: a
/// leading `$` in the query switches the file search to the snippet launcher,
/// and backspacing it off returns to file mode with no extra state. `$` and `>`
/// are mutually exclusive (a query starts with at most one).
fn palette_snippet_mode(&self) -> bool {
self.palette_query.starts_with('$')
}
/// The snippet filter: everything after the leading `$`, trimmed. `$` alone is
/// an empty filter, which lists every snippet.
fn snippet_filter(&self) -> &str {
self.palette_query.strip_prefix('$').unwrap_or("").trim()
}
/// The text a snippet is fuzzy-matched against: name, prefix, and description
/// together, so you find a snippet by whichever you remember. Matching runs on
/// this joined haystack (see [`fuzzy_score`]); [`snippet_label`] is the shorter
/// string actually drawn.
fn snippet_haystack(s: &Snippet) -> String {
format!("{} {} {}", s.name, s.prefix, s.description)
}
/// A snippet's palette row: the display name with its inline trigger in
/// brackets (`Markdown link [link]`), so browsing also teaches the prefix you'd
/// type for the fast inline path. Truncated to the column width by the caller.
fn snippet_label(s: &Snippet) -> String {
format!("{} [{}]", s.name, s.prefix)
}
/// Filtered, ranked snippet indices into [`snippets`](Self::snippets). An empty
/// filter keeps the parsed order (sorted by name); a non-empty one fuzzy-ranks
/// over [`snippet_haystack`], same matcher and stable-sort as the file list.
fn palette_snippet_matches(&self) -> Vec<usize> {
let filter = self.snippet_filter();
let mut scored: Vec<(usize, i32)> = self
.snippets
.iter()
.enumerate()
.filter_map(|(i, s)| fuzzy_score(filter, &Self::snippet_haystack(s)).map(|score| (i, score)))
.collect();
scored.sort_by_key(|&(_, s)| core::cmp::Reverse(s));
scored.into_iter().map(|(i, _)| i).collect()
}
/// Enter in `$` snippet mode: insert the selected snippet at the caret and start
/// its tab-stop session. Unlike a `>` toggle (which stays open), this **closes**
/// the palette — inserting content returns you to the buffer, in Insert on `$1`.
/// Checkpoints so the whole insertion is one undo group. A no-op on an empty
/// result set (nothing selected), which stays open so the query can be fixed.
fn palette_insert_selected(&mut self) {
let Some(&i) = self.palette_snippet_matches().get(self.palette_sel) else {
return;
};
let body = self.snippets[i].body.clone();
self.close_palette();
self.checkpoint(); // baseline is the buffer before insertion — undo removes it whole
self.insert_snippet(&body);
}
/// Row count of the palette's current result list, whichever sigil is active —
/// the single source the selection clamps against.
fn palette_len(&self) -> usize {
if self.palette_snippet_mode() {
self.palette_snippet_matches().len()
} else if self.palette_command_mode() {
self.palette_command_matches().len()
} else {
self.palette_matches().len()
}
}
// --- Visual mode -------------------------------------------------------
/// True while a Visual selection is active (charwise or linewise).
@@ -2117,6 +2396,83 @@ impl Editor {
self.caret += s.len();
}
// --- Snippets ----------------------------------------------------------
/// Expand a snippet `body` at the caret and enter its tab-stop session. Splits
/// the body into literal text (stops removed) and their [`parse_snippet_body`]
/// visit order, inserts the literal, lands the caret on `$1` (or the body end
/// if there are no stops), and enters Insert. The remaining stops queue in
/// [`snippet_stops`](Self::snippet_stops) for Tab. Shared by inline
/// Tab-expansion and the `$` palette. **The caller owns the undo boundary** —
/// it must [`checkpoint`](Self::checkpoint) *before* any related mutation
/// (the inline path deletes the trigger word first), so one undo group covers
/// the whole expansion; `insert_snippet` deliberately does not checkpoint.
fn insert_snippet(&mut self, body: &str) {
let (literal, stops) = parse_snippet_body(body);
let base = self.caret;
self.text.insert_str(base, &literal);
let mut abs = stops.into_iter().map(|o| base + o);
match abs.next() {
Some(first) => {
self.caret = first;
self.snippet_stops = abs.collect();
}
None => {
self.caret = base + literal.len();
self.snippet_stops.clear();
}
}
self.mode = Mode::Insert;
}
/// Tab inside a live session: jump the caret to the next pending stop. The
/// final stop (`$0` / the body end) empties the queue, ending the session with
/// the caret resting there. Offsets were kept current by the edit-shift in
/// [`insert_key`](Self::insert_key), so this is a plain move.
fn snippet_advance(&mut self) {
if self.snippet_stops.is_empty() {
return;
}
let next = self.snippet_stops.remove(0);
self.caret = next.min(self.text.len());
}
/// The maximal run of non-whitespace ending exactly at the caret — the
/// candidate inline snippet trigger — or `None` if the caret is at a line/word
/// start (the char before it is whitespace). Whitespace is ASCII, so scanning
/// bytes is UTF-8-safe: `start` lands just past an ASCII space/newline (a char
/// boundary) or at 0.
fn word_before_caret(&self) -> Option<(usize, &str)> {
let b = self.text.as_bytes();
if self.caret == 0 || b[self.caret - 1].is_ascii_whitespace() {
return None;
}
let mut start = self.caret;
while start > 0 && !b[start - 1].is_ascii_whitespace() {
start -= 1;
}
Some((start, &self.text[start..self.caret]))
}
/// Inline Tab-expansion: if the word immediately before the caret is exactly a
/// snippet prefix, replace it with the expansion (as one undo group) and start
/// the tab-stop session, returning `true`. Otherwise leave the buffer untouched
/// and return `false`, so Tab falls back to inserting spaces.
fn try_expand_snippet(&mut self) -> bool {
let Some((start, word)) = self.word_before_caret() else {
return false;
};
let Some(body) = self.snippets.iter().find(|s| s.prefix == word).map(|s| s.body.clone())
else {
return false;
};
self.checkpoint(); // baseline includes the trigger word — undo restores it
self.text.replace_range(start..self.caret, "");
self.caret = start;
self.insert_snippet(&body);
true
}
/// Enter in Insert mode, with Markdown list continuation. At the END of a
/// list line (`- `/`* `/`+ ` or `N. `), start the next item automatically —
/// same bullet, or the next number — preserving indentation. Enter on an
@@ -2907,9 +3263,10 @@ impl Editor {
// (`command_mode`). An empty query is just the caret over a `Go to file`
// placeholder that clears on the first keystroke — type `>` for commands.
let command_mode = self.palette_command_mode();
let snippet_mode = self.palette_snippet_mode();
if self.palette_query.is_empty() {
Text::with_baseline(
"Go to file (type > for commands)",
"Go to file · > settings · $ snippets",
Point::new(2 + CW, 0),
style,
Baseline::Top,
@@ -2933,8 +3290,11 @@ impl Editor {
.draw(f)
.unwrap();
// The list is either the fuzzy-ranked files or the `>` command registry.
let matches = if command_mode {
// The list is the fuzzy-ranked files, the `>` command registry, or the `$`
// snippet library, per the active sigil.
let matches = if snippet_mode {
self.palette_snippet_matches()
} else if command_mode {
self.palette_command_matches()
} else {
self.palette_matches()
@@ -2945,7 +3305,13 @@ impl Editor {
let visible = ((hint_y - list_top) / CH).max(1) as usize;
if matches.is_empty() {
let msg = if command_mode {
let msg = if snippet_mode {
if self.snippets.is_empty() {
"(no snippets)"
} else {
"(no match)"
}
} else if command_mode {
"(no command)"
} else if self.files.is_empty() {
"(no files on card)"
@@ -2961,7 +3327,9 @@ impl Editor {
let start = if sel >= visible { sel - visible + 1 } else { 0 };
for (row, &idx) in matches.iter().enumerate().skip(start).take(visible) {
let y = list_top + (row - start) as i32 * CH;
let label: String = if command_mode {
let label: String = if snippet_mode {
Self::snippet_label(&self.snippets[idx]).chars().take(max_chars).collect()
} else if command_mode {
self.command_label(PALETTE_CMDS[idx])
} else {
palette_label(&self.files[idx]).chars().take(max_chars).collect()
@@ -2983,7 +3351,9 @@ impl Editor {
}
}
let hint = if command_mode {
let hint = if snippet_mode {
"^N/^P move Enter insert Esc close"
} else if command_mode {
"^N/^P move Enter change Esc close"
} else {
"^N/^P move Enter open Esc close"
@@ -4971,4 +5341,261 @@ mod tests {
let mut none = palette_type(&["/sd/repo/notes.md"], ">zzzzz"); // "(no command)"
let _ = none.draw(true);
}
// ---- Snippets (v0.6) ----
fn with_snippets(json: &str) -> Editor {
let mut e = Editor::new();
e.set_snippets(Snippets::parse(json).unwrap());
e
}
#[test]
fn strip_labels_reduces_placeholders_to_bare_stops() {
assert_eq!(strip_stop_labels("# ${1:Titre}"), "# $1");
assert_eq!(strip_stop_labels("${2}"), "$2");
assert_eq!(strip_stop_labels("[$1]($2)$0"), "[$1]($2)$0"); // plain stops untouched
assert_eq!(strip_stop_labels("price: $ and ${3:x}"), "price: $ and $3"); // lone $ kept
}
#[test]
fn parse_body_extracts_literal_and_visit_order() {
let (lit, stops) = parse_snippet_body("[$1]($2)$0");
assert_eq!(lit, "[]()");
assert_eq!(stops, vec![1, 3, 4]); // $1, $2, then $0 (end) last
}
#[test]
fn parse_body_appends_implicit_final_stop_when_no_zero() {
let (lit, stops) = parse_snippet_body("# $1\n## $2");
assert_eq!(lit, "# \n## ");
assert_eq!(stops, vec![2, 6, 6]); // $1, $2, implicit rest at the end
}
#[test]
fn parse_body_no_stops_has_empty_visit_list() {
let (lit, stops) = parse_snippet_body("- [ ] ");
assert_eq!(lit, "- [ ] ");
assert!(stops.is_empty());
}
#[test]
fn parse_snippets_reads_zed_json_string_and_array_bodies() {
// r###"…"### so the `"#`/`"##` in the heading bodies don't close the string.
let json = r###"{
"Link": { "prefix": "link", "body": "[$1]($2)$0", "description": "Inline link" },
"Book notes": { "prefix": "booknotes", "body": ["# ${1:Titre}", "## $2"] }
}"###;
let s = Snippets::parse(json).unwrap().0;
assert_eq!(s.len(), 2);
// BTreeMap parse → sorted by display name ("Book notes" < "Link").
assert_eq!(s[0].name, "Book notes");
assert_eq!(s[0].prefix, "booknotes");
assert_eq!(s[0].body, "# $1\n## $2"); // array joined with \n, label stripped
assert_eq!(s[0].description, ""); // omitted → empty
assert_eq!(s[1].name, "Link");
assert_eq!(s[1].body, "[$1]($2)$0");
assert_eq!(s[1].description, "Inline link");
}
#[test]
fn parse_snippets_empty_and_malformed() {
assert!(Snippets::parse("{}").unwrap().0.is_empty());
assert!(Snippets::parse("{ not json").is_err()); // host logs, boots with none
}
#[test]
fn tab_expands_prefix_and_lands_on_first_stop() {
let mut e = with_snippets(r#"{ "Link": { "prefix": "link", "body": "[$1]($2)$0" } }"#);
e.handle(Key::Char('i'));
for c in "link".chars() {
e.handle(Key::Char(c));
}
e.handle(Key::Char('\t')); // expand
assert_eq!(e.text, "[]()"); // trigger word replaced by the expansion
assert_eq!(e.caret, 1); // caret on $1
assert_eq!(e.mode(), Mode::Insert);
assert_eq!(e.snippet_stops, vec![3, 4]); // $2 then $0 pending
}
#[test]
fn tab_advances_stops_and_typing_shifts_pending_ones() {
let mut e = with_snippets(r#"{ "Link": { "prefix": "link", "body": "[$1]($2)$0" } }"#);
e.handle(Key::Char('i'));
for c in "link".chars() {
e.handle(Key::Char(c));
}
e.handle(Key::Char('\t'));
for c in "url".chars() {
e.handle(Key::Char(c)); // type at $1
}
assert_eq!(e.text, "[url]()");
assert_eq!(e.snippet_stops, vec![6, 7]); // pending shifted by +3
e.handle(Key::Char('\t')); // → $2
assert_eq!(e.caret, 6);
assert_eq!(e.snippet_stops, vec![7]);
for c in "http".chars() {
e.handle(Key::Char(c));
}
assert_eq!(e.text, "[url](http)");
e.handle(Key::Char('\t')); // → $0 (end); session ends
assert_eq!(e.caret, 11);
assert!(e.snippet_stops.is_empty());
}
#[test]
fn esc_ends_the_snippet_session() {
let mut e = with_snippets(r#"{ "Link": { "prefix": "link", "body": "[$1]($2)$0" } }"#);
e.handle(Key::Char('i'));
for c in "link".chars() {
e.handle(Key::Char(c));
}
e.handle(Key::Char('\t'));
assert!(!e.snippet_stops.is_empty());
e.handle(Key::Escape);
assert_eq!(e.mode(), Mode::Normal);
assert!(e.snippet_stops.is_empty(), "leaving Insert ends the session");
}
#[test]
fn tab_without_matching_prefix_inserts_spaces() {
let mut e = with_snippets(r#"{ "Link": { "prefix": "link", "body": "[$1]($2)$0" } }"#);
e.handle(Key::Char('i'));
for c in "zzz".chars() {
e.handle(Key::Char(c));
}
e.handle(Key::Char('\t'));
assert!(e.text.starts_with("zzz"));
assert!(e.text.len() > 3, "tab inserted whitespace, not an expansion");
assert!(e.snippet_stops.is_empty());
}
#[test]
fn no_stop_snippet_expands_without_a_session() {
let mut e = with_snippets(r#"{ "Todo": { "prefix": "todo", "body": "- [ ] " } }"#);
e.handle(Key::Char('i'));
for c in "todo".chars() {
e.handle(Key::Char(c));
}
e.handle(Key::Char('\t'));
assert_eq!(e.text, "- [ ] ");
assert_eq!(e.caret, 6); // caret at the end, no session
assert!(e.snippet_stops.is_empty());
}
#[test]
fn undo_after_expansion_restores_the_trigger_word() {
let mut e = with_snippets(r#"{ "Link": { "prefix": "link", "body": "[$1]($2)$0" } }"#);
e.handle(Key::Char('i'));
for c in "link".chars() {
e.handle(Key::Char(c));
}
e.handle(Key::Char('\t'));
assert_eq!(e.text, "[]()");
e.handle(Key::Escape);
e.handle(Key::Char('u')); // undo the whole expansion
assert_eq!(e.text, "link");
}
// ---- `$` snippet palette ----
// r##"…"## so the `"#` in the `"# $1"` heading body doesn't close the string.
const TWO_SNIPPETS: &str = r##"{
"Markdown link": { "prefix": "link", "body": "[$1]($2)$0", "description": "Inline link" },
"Book notes": { "prefix": "booknotes", "body": "# $1", "description": "Reading fiche" }
}"##;
/// Open the palette on an editor with `json`'s snippets loaded, then type `q`.
fn snippet_palette(json: &str, q: &str) -> Editor {
let mut e = with_snippets(json);
e.handle(Key::Palette);
for c in q.chars() {
e.handle(Key::Char(c));
}
e
}
#[test]
fn dollar_switches_the_palette_to_snippet_mode() {
let e = snippet_palette(TWO_SNIPPETS, "$");
assert!(e.palette_snippet_mode());
assert!(!e.palette_command_mode());
// A bare `$` lists every snippet.
assert_eq!(e.palette_snippet_matches().len(), 2);
}
#[test]
fn backspacing_the_dollar_returns_to_file_mode() {
let mut e = snippet_palette(TWO_SNIPPETS, "$");
assert!(e.palette_snippet_mode());
e.handle(Key::Backspace);
assert!(!e.palette_snippet_mode());
assert_eq!(e.mode(), Mode::Palette); // still open, file mode again
}
#[test]
fn snippet_filter_fuzzy_matches_name_prefix_and_description() {
// Query the prefix.
let e = snippet_palette(TWO_SNIPPETS, "$link");
let m = e.palette_snippet_matches();
assert_eq!(m.len(), 1);
assert_eq!(e.snippets[m[0]].name, "Markdown link");
// Query a word only in the *description* ("fiche") finds the other one.
let e = snippet_palette(TWO_SNIPPETS, "$fiche");
let m = e.palette_snippet_matches();
assert_eq!(m.len(), 1);
assert_eq!(e.snippets[m[0]].name, "Book notes");
}
#[test]
fn enter_in_snippet_mode_inserts_and_starts_the_session() {
let mut e = snippet_palette(TWO_SNIPPETS, "$link");
e.handle(Key::Enter);
assert_eq!(e.mode(), Mode::Insert); // dropped into the buffer at $1
assert_eq!(e.text, "[]()");
assert_eq!(e.caret, 1); // on $1
assert_eq!(e.snippet_stops, vec![3, 4]); // $2 then $0 pending
// Inserting content closes the palette (unlike a `>` toggle, which stays).
// A follow-up Esc must leave Insert, not reopen anything.
e.handle(Key::Escape);
assert_eq!(e.mode(), Mode::Normal);
}
#[test]
fn snippet_palette_insertion_is_one_undo_group() {
let mut e = snippet_palette(TWO_SNIPPETS, "$link");
e.handle(Key::Enter);
e.handle(Key::Escape); // end the session, back to Normal
e.handle(Key::Char('u')); // undo the whole insertion
assert_eq!(e.text, ""); // buffer restored to its pre-insert state
}
#[test]
fn ctrl_n_clamps_to_the_snippet_result_list() {
let mut e = snippet_palette(TWO_SNIPPETS, "$");
e.handle(Key::Down);
e.handle(Key::Down);
e.handle(Key::Down); // past the end — clamps
assert_eq!(e.palette_sel, 1); // two snippets → last index is 1
}
#[test]
fn empty_snippet_library_matches_nothing() {
let mut e = Editor::new(); // no snippets set
e.handle(Key::Palette);
e.handle(Key::Char('$'));
assert!(e.palette_snippet_mode());
assert!(e.palette_snippet_matches().is_empty());
e.handle(Key::Enter); // no-op, stays open
assert_eq!(e.mode(), Mode::Palette);
let _ = e.draw(true); // "(no snippets)" path must not panic
}
#[test]
fn draw_in_snippet_mode_does_not_panic() {
let mut e = snippet_palette(TWO_SNIPPETS, "$");
let _ = e.draw(true);
let mut filtered = snippet_palette(TWO_SNIPPETS, "$link");
let _ = filtered.draw(true);
}
}