aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* docs: add bug-priority matrix, project aliases, location-lookup ruleCraig Jennings14 hours3-0/+95
|
* fix(music): define the playlist-header facesCraig Jennings14 hours2-0/+40
| | | | The route-colors pass dropped the literal cj/music-* face definitions but left the playlist header referencing them, so every header render spammed "Invalid face reference". I restored the five as deffaces that inherit themed base faces, so the theme still owns their colors. A test asserts each referenced face is defined.
* chore(todo): file pdf-view epdfinfo crash taskCraig Jennings21 hours1-0/+4
|
* fix(ai-term): keep agent buffers alive through the kill-all sweepCraig Jennings22 hours3-3/+85
| | | | | | F1 (cj/dashboard-only) kills every other buffer, burying only those on the undead list. Agent buffers were never registered, so the sweep killed live agents and detached their sessions. Agent buffers are a dynamic family ("agent [<project>]") that an exact-name list can't pre-enumerate, so undead-buffers gains a regexp list (cj/undead-buffer-regexps) and a centralized cj/--buffer-undead-p predicate. Both kill paths route through it. ai-term registers the "agent [" pattern, so every agent -- current or future, however created -- is buried rather than killed.
* feat(calibre): open calibredb filtered to the in-progress booksCraig Jennings22 hours2-1/+90
| | | | | | Every calibredb launch (the dashboard "b", M-x, anywhere) now opens filtered to the in-progress books rather than the whole library, via an :after advice on calibredb. Clear with L or x to see everything. The filter scopes to the tag field (calibredb-tag-filter-p), not a bare keyword search. A bare keyword matches any field, which surfaced books that only mention "in-progress" in their description.
* feat(reading): reformat PDF bookmark names like EPUBsCraig Jennings23 hours2-58/+84
| | | | | | Bookmark reformatting to "Author, Title" was nov-only, so PDF bookmarks kept the raw filename. PDFs open in pdf-view-mode, whose pdf-view-bookmark-make-record carried no advice. I added a parallel :filter-return advice there, reusing the same extension-agnostic filename parser, and renamed the helpers off the nov- prefix to reading- since they now serve both EPUB and PDF. New tests cover a PDF filename and a PDF-shaped record.
* chore(todo): close dashboard weather launcher taskCraig Jennings23 hours1-2/+3
|
* feat(dashboard): add a weather launcher (wttrin)Craig Jennings23 hours2-14/+23
| | | | | | A Weather launcher joins the dashboard's top row after Agenda, on key w, drawn with the nf-weather-day_sunny_overcast Weather Icons glyph. It opens the wttrin forecast through call-interactively so wttrin's location prompt runs. A bare (wttrin) call errors, since the command takes the location as a required argument that its interactive form supplies. Row sizes move from 4-4-3-3 to 5-4-3-3. The launcher table stays the single source for both the navigator icons and the keymap.
* fix(ai-term): summon restores the agent's last fullscreen stateCraig Jennings23 hours3-7/+168
| | | | | | Summoning the agent (M-SPC) into a single-window frame docked it at the default fraction even when it was last fullscreen, because the size-memory model only captured split geometry at toggle-off and a sole window has no dock size to record. A window-configuration-change-hook tracker now records whether the displayed agent fills its frame (cj/--ai-term-last-fullscreen), and display-saved restores it in place when that flag and a single-window frame both hold. The tracker records only that flag, not dock geometry: re-capturing the dock size on every window change fed a capture/replay loop that drifted the dock height a couple rows per cycle. The restore guard uses (one-window-p t) so an active minibuffer (a picker prompt mid-summon) isn't counted as a second window, which otherwise misfired the restore into a dock and cascaded.
* chore(todo): archive resolved tasksCraig Jennings25 hours1-115/+103
|
* chore(todo): cancel the ai-term summon taskCraig Jennings25 hours1-1/+3
| | | | Dropped the fullscreen-on-summon and single-agent-toggle approach in favor of binding M-arrow to the general window pull-away.
* feat(windows): bind M-arrow to the window pull-away and resizeCraig Jennings25 hours2-2/+57
| | | | | | M-<arrow> now mirrors C-; b <arrow>. From a sole window it pulls a sliver split open on the opposite edge, revealing the previous buffer. In a multi-window layout it nudges the divider via windsize. cj/window-resize-sticky derives the arrow with event-basic-type, so one command serves both chords. M-up/down were unbound, and M-left/right shed word-motion, which stays on C-left/right. org and other modes that own M-arrow still shadow it, so C-; b remains the universal binding.
* fix(dashboard): drop per-item list icons so bookmarks render uniformlyCraig Jennings26 hours2-3/+4
| | | | URL bookmarks have no filename, so dashboard's filename-based per-item icon left them bare next to file bookmarks. Rather than special-case a URL glyph, I dropped per-item icons from the recents, bookmarks, and projects lists (dashboard-set-file-icons nil). The section-heading icons and the launcher row keep theirs.
* chore(todo): file inbox items as tasksCraig Jennings27 hours1-0/+20
| | | | Filed eight tasks from the inbox. Four under Theme-Studio Open Work: surface font-lock faces, contrast against distant-foreground, flag a face inheriting from itself, and outline the auto-dim text in the live preview. Four under Emacs Open Work: ai-term fullscreen-on-summon plus single-agent toggle, dashboard icons for URL bookmarks, a dashboard weather entry, and a nov sepia reading view. Each carries its findings in the body. Also folded an offline-capable Google Keep idea into the existing google-keep task as v2+ scope.
* refactor(weather): load wttrin from the local release/0.4.0 checkoutCraig Jennings27 hours1-9/+9
| | | | Load wttrin via :load-path from the local checkout instead of package-vc, so edits in the checkout are testable without a pull. The wttrin-auto-fit-font defcustom exists on release/0.4.0, so the placeholder setq becomes setopt, which also drops the byte-compile free-variable warning the setq carried. The :vc block stays as a commented fallback for production tracking.
* chore(todo): close the wttrin theme-studio taskCraig Jennings30 hours1-5/+8
| | | | Recorded wttrin's inventory capture, the two non-blocking residuals (a full clean-daemon regen for the other local checkouts, and the eval-defined wttrin-instructions-header), and filed the studio visual confirm.
* feat(theme-studio): make wttrin themeable in the package inventoryCraig Jennings30 hours2-1/+7
| | | | wttrin loads from an unversioned local checkout (elpa/wttrin/), which the inventory regex already learned to capture (a5fd0b4d). This long-lived daemon's wttrin face attribution was scrambled by the session's theme reloading, so rather than regenerate the whole inventory from a disturbed daemon I added wttrin's four file-loaded faces from a clean batch load and regenerated the studio. wttrin is now a previewable app, and all studio gates stay green.
* docs: finish the commentary/comment audit tailCraig Jennings30 hours3-11/+9
| | | | Condensed early-init's debug-flags note and added a why for the deferred global-font-lock, rewrote three vcf-conversion-helpers comments to name the real intent (keeping the reverse-order-to-preserve-positions rationale), and gave the archived testutil-filesystem a real summary while deleting its line-by-line narration comments.
* chore: delete unused c-boxes.elCraig Jennings31 hours1-407/+0
| | | | Dead vendored code for reboxing C block comments (1991). Nothing requires or loads it, it has no provide footer, and none of its commands are bound or called. Removing the orphan.
* docs: normalize generated-file headers and prune obvious commentsCraig Jennings33 hours11-54/+21
| | | | The theme-studio and browser-choice generators now stamp their output with a header that names the authoritative source and says to regenerate rather than hand-edit. I regenerated both files to match. I also deleted six obvious "describe the next form" comments, replaced two stale placeholders in titlecase.el and an incomplete FIXME in org-checklist.el with real rationale, and condensed early-init's header and Commentary.
* docs: fix blank package summaries and normalize more module headersCraig Jennings33 hours12-222/+57
| | | | More of the commentary/comment audit. The custom-* command modules, weather-config, and mousetrap-mode had empty package summary lines and verbose summary paragraphs. I filled the summaries and condensed the prose while keeping each module's load-contract metadata. dwim-shell-config and auth-config had malformed ;; headers (now ;;;), local-repository had a leading BOM, and two test files had blank summaries.
* chore(todo): close the ai-term docs and system-power tasksCraig Jennings33 hours1-4/+6
| | | | I closed the ai-term F9-commentary fix and the system-power keybinding removal, both shipped.
* docs: condense module commentaries to the terse header contractCraig Jennings33 hours22-1038/+187
| | | | 22 module headers carried long user-manual commentaries (quick-starts, keybinding matrices, setup walkthroughs) that belong in user docs, not source. Each now states the purpose, load contract, and entry points tersely. ai-term also drops its stale F9 keybinding references (the scheme is C-; a plus M-SPC now) and a header line claiming a vertical-split that's really host-aware.
* refactor(system-commands): bind C-; ! to the menu, drop the leaf keysCraig Jennings33 hours2-47/+27
| | | | C-; ! was a prefix map with per-command leaf keys (s/r/e/l/L/E/S) I rarely use. I bound C-; ! directly to the completing-read menu instead and removed the leaf keys, reclaiming the real-estate. Every command stays reachable through the menu. Updated the commentary and the two keymap tests to the new contract.
* feat(weather): opt into wttrin auto-fit font scalingCraig Jennings34 hours1-0/+6
| | | | I set wttrin-auto-fit-font so the weather font scales to the window width, clamped to wttrin's min/max floor and cap. The option lands when the wttrin package gains the defcustom. Until then it's a harmless no-op the old code ignores, and the later defcustom won't clobber it.
* chore(todo): audit solo tags and close shipped tasksCraig Jennings34 hours1-20/+35
| | | | | | I tagged the open tasks for solo eligibility: solo means the work needs no decision or preference input, only manual validation afterward. I added solo where the work is self-contained and dropped it where a design or palette decision gates it. I closed the tasks that shipped (eat zoom-out binding, ledger wiring, transcription stderr, EAT diff darkening), filed the ledger guardrail-UX audit, and added the manual-validation checks for the failing-transcription log and the diff darkness.
* fix(theme-studio): darken the EAT diff line backgroundsCraig Jennings34 hours2-0/+14
| | | | | | The added and removed line backgrounds in Claude Code diffs read too bright. I added eat-term-color-22 (added green) and eat-term-color-52 (removed red) to the WIP theme at about half their former brightness: #005F00 to #002f00, #5F0000 to #2f0000. EAT uses each face's foreground as the palette value for both text and background paint, so darkening the foreground darkens the diff background. The green index is confirmed. The red is the symmetric counterpart. The brighter within-line word-highlight shades are different indices, left until I sample them live.
* fix(transcription): write stderr to the error log instead of a phantom bufferCraig Jennings34 hours2-8/+69
| | | | | | make-process :stderr was a file path, but :stderr takes a buffer, so Emacs made a buffer named after the path instead of writing the file. The "Errored. Logs in <file>" notification pointed at a log with no error text, and that hidden buffer leaked one per transcription. I now route stderr through an explicit, erased buffer: passed to :stderr, threaded to the sentinel, drained into the log, then killed. That keeps stderr off the stdout :buffer, so the transcript stays clean.
* chore(todo): re-scope wttrin task to the verified root causeCraig Jennings37 hours1-1/+4
| | | | Replaces the wrong "blocked on shipping" read. The real cause was the inventory capture matching only versioned package dirs, fixed in a5fd0b4d and verified on a clean load. Remaining work is a clean-Emacs inventory regen and getting the new face into the checkout source.
* fix(theme-studio): capture unversioned local checkouts in the package inventoryCraig Jennings37 hours1-1/+4
| | | | build-inventory.el grouped faces by their defining file and pulled the package name only from versioned directories (/elpa/PKG-VERSION/). Locally-developed packages live in unversioned directories (/elpa/PKG/), so every one of them was silently excluded from the studio. Make the version suffix optional so unversioned checkouts are captured too. Verified against a clean wttrin load: wttrin-key resolves to /elpa/wttrin/wttrin.elc and the regex extracts "wttrin". The inventory itself needs regenerating in a clean Emacs to pick these up.
* chore(todo): re-scope the wttrin theme-studio task to its real shapeCraig Jennings39 hours1-2/+2
| | | | Investigation showed wttrin is not a studio app at all: package-inventory.json is generated from installed packages, has no wttrin entry, and wttrin is on an unmerged feature branch so the capture cannot see it. So it is a from-scratch build blocked on wttrin shipping, not the one-line face add the handoff implied.
* fix(eat): bind zoom-out and reset in eat-semi-char-mode-mapCraig Jennings39 hours1-0/+13
| | | | In eat-semi-char-mode, C-- was bound to eat-self-input and forwarded to the terminal, so it never reached text-scale-decrease and the font could only grow. A session climbed to text-scale 17 (~20x, unreadable) with no in-buffer way down. Bind C-- to text-scale-decrease and C-0 to a reset helper. C-= and C-+ already passed through. Low cost: the terminal program and tmux don't use Ctrl+-, and C-0 shadows digit-argument inside eat buffers only.
* chore(todo): file inbox handoffs as tasksCraig Jennings39 hours1-0/+5
| | | | Two actionable items from the inbox: eat semi-char mode swallows zoom-out (home-emacs, with the proposed binding fix in the body) and a new wttrin-instructions-header face for the theme-studio wttrin preview (emacs-wttrin). The other two emacs-wttrin notes were informational changes that already landed in weather-config.el and verified live, so they only needed marking processed.
* chore(todo): close the dirvish preview rebuild taskCraig Jennings39 hours1-2/+2
| | | | Shipped this session in 61b68fcf and visually verified, so the sub-task becomes a dated event-log entry under the Theme-Studio project.
* chore(theme): WIP set nerd-icons-completion-dir-face to goldCraig Jennings39 hours2-2/+3
| | | | Gold completing-read folders against the silver file and dirvish icons. The nerd-icons-config override is what lets this face win over the global dir advice.
* fix(nerd-icons): color completing-read folders via the completion dir faceCraig Jennings39 hours1-1/+14
| | | | The cj/--nerd-icons-color-dir advice forces nerd-icons-yellow onto every dir icon, which wins over nerd-icons-completion's inherit-behind dir face, so setting nerd-icons-completion-dir-face had no visible effect and folders just followed nerd-icons-yellow. Redefine the file-category completion icon to copy the dir icon and prepend nerd-icons-completion-dir-face so it takes the foreground. The copy keeps nerd-icons' memoized original untouched, so dired and dirvish folders are unaffected. Now completing-read folders carry their own color while file icons keep their type face.
* chore(theme-studio): refresh face-coverage reportCraig Jennings45 hours1-196/+1256
| | | | The committed report was dated 2026-06-18 and 457 faces behind the current set (1293 to 1750 tracked, 43 to 51 package groups). Regenerated from current face data.
* chore(theme): WIP palette pass over nerd-icons and dirvish facesCraig Jennings45 hours2-121/+146
| | | | Region background to #424f5e, highlight distant-foreground, a few ui face locks, plus a sweep of the nerd-icons color palette (the d/l/alt variants) and several dirvish faces (file-modes, free-space, hl-line, inactive).
* feat(theme-studio): rebuild the dirvish preview as a realistic two-paneCraig Jennings46 hours2-24/+106
| | | | The preview was a flat catalog dumping every face on labeled lines. It's now a believable two-pane dirvish: an active directory listing (the real nerd-icon glyph and color per file type, dir-entry counts, file sizes, the hl-line on the selected row, a dimmed backup) beside an ls-l preview of the selected dir. Faces that don't fit a calm listing (vc, git, subtree, media, proc, narrow, emerge) moved to a labeled extras strip below, so all 38 dirvish faces stay covered. Glyphs and colors mirror what nerd-icons actually emits per type.
* chore(todo): file the session's deferred work, close ghostel consolidationCraig Jennings47 hours1-5/+30
| | | | Add seven tasks for the deferred changes from the EAT, dirvish, and completion-category work: darken the EAT diff colors, rebuild the theme-studio dirvish preview (under the Theme-Studio project), root-cause webm previews, completion categories for the mu4e attachment picker and the file-basename pickers, and two watchlist items at #D (the Claude Code upstream bleed and the occur/xref font-lock question). Close Consolidate on EAT now that Phase 5 shipped this session.
* fix(ibuffer): exclude ibuffer from global font-lock so its faces standCraig Jennings48 hours1-0/+6
| | | | ibuffer paints its rows with manual nerd-icons and ibuffer faces, and global font-lock was leaking font-lock-keyword-face onto the buffer and mode names. Exclude ibuffer-mode, the same fix as the shr-rendered reader modes. An empirical scan confirmed plain tabulated-list listings like package-menu and Buffer-menu survive font-lock untouched, so this is scoped to ibuffer, whose content trips keyword fontification.
* fix(reader): exclude eww and nov from global font-lock so shr colors showCraig Jennings48 hours2-0/+12
| | | | eww and nov both render with shr, which paints buffers with manual face properties, and global font-lock was overwriting them with syntactic string fontification, the same bug just fixed for elfeed. An audit of live buffers caught nov directly (two open epub buffers, faces clobbered). eww has font-lock-defaults nil too and is the same shr-rendered pattern as the already-excluded elfeed-show and mu4e-view, so I excluded it alongside. The *sdcv* dictionary buffer has its own font-lock-defaults, so its font-lock is by design and left alone.
* fix(elfeed): exclude elfeed modes from global font-lock so the theme showsCraig Jennings48 hours1-0/+7
| | | | elfeed paints its search and entry buffers with manual face properties, the date, title, feed, and tag faces the theme styles. Left in global-font-lock-mode the buffer also got syntactic fontification, which overwrote those with font-lock-string-face, so it lost every theme color. Exclude elfeed-search-mode and elfeed-show-mode through cj/exclude-from-global-font-lock, the same fix dashboard and mu4e already use.
* feat(completion): annotate the Signal and contact pickers via categoriesCraig Jennings2 days2-5/+25
| | | | Two pickers have bare-name candidates worth a category: the Signal recipient picker, where a name maps to a phone or UUID, and org-contacts find, where a name maps to an email. I tag each with a custom category and a table annotation-function that shows the looked-up value. marginalia has no annotator for these custom categories, so it leaves the table's annotation in place. The other Tier-2 candidates from the survey (ai-term projects, the mu4e contact list) already carry their info inline, so a category adds nothing and I left them bare.
* feat(completion): tag four pickers with categories for marginaliaCraig Jennings2 days5-5/+40
| | | | Add cj/completion-table (and an annotated variant) to system-lib: a wrapper that tags any collection with a completion category so marginalia, embark, consult, and sorting can recognize the candidates. None of the config's completing-reads declared a category, so the rich-candidate pickers showed bare. This applies it to the four whose candidates match a standard category and so need no custom annotator: benchmark-method (function), ERC buffer switch (buffer), ai-term close (buffer), and theme switch (theme). Each now annotates for free.
* feat(music): configurable in-track seek via an mpv control socketCraig Jennings2 days1-3/+41
| | | | The subprocess player I just switched to dropped in-track seek. I re-added it without the startup fragility that made the IPC player unreliable. mpv still plays the track as a direct argument, so the reliable start is untouched, and --input-ipc-server opens a control socket that only carries seek commands to the already-playing process. f and b seek by cj/music-seek-seconds (default 5). The socket send is a no-op when nothing is playing, so it never errors.
* fix(music): drive mpv as a direct subprocess for reliable playbackCraig Jennings2 days1-16/+59
| | | | EMMS drove mpv over an IPC socket, starting it idle and sending loadfile across the socket. That handshake left mpv loaded but never streaming, so playback silently failed and the playing flag never set. I replaced it with a subprocess player that runs mpv with the track as a direct argument, the invocation that plays every time. Pause works in place through process signals, SIGSTOP and SIGCONT. In-track seek is gone, the deliberate trade for reliability. --no-config isolates this mpv from the interactive video setup so the two cannot interfere, and it follows the system default audio sink.
* chore(theme): save WIP theme stateCraig Jennings3 days1-1/+14
|
* fix(eat): exclude eat-mode from global font-lockCraig Jennings3 days1-0/+9
| | | | EAT paints its whole palette with manual face text properties. Inside global-font-lock-mode the terminal buffer also got syntactic fontification, so a quoted string in program output (a diff shown by Claude Code) became font-lock-string-face and overrode the foreground EAT had painted. The result was the theme's string green over the green diff-added background, green on green. I excluded eat-mode the same way dashboard and mu4e are, through cj/exclude-from-global-font-lock. A mode-hook can't do it because global font-lock runs after the mode hook.
* chore(todo): file theme-studio package-coverage and guide-support tasksCraig Jennings3 days1-32/+33
|