aboutsummaryrefslogtreecommitdiff
path: root/tests/test-music-config--playlist-dock.el
Commit message (Collapse)AuthorAgeFilesLines
* fix(music): raise the playlist dock default to half the frameCraig Jennings2026-07-181-3/+4
|
* fix(music): show the cursor on the row number and open the dock tallerCraig Jennings2026-07-181-0/+39
| | | | | | With point pinned at the row start, redisplay drew the cursor after the number's before-string, on the album-art thumbnail, where a block cursor is invisible. A cursor property on the number string makes redisplay draw it on the number. The dock also kept reopening too short: its height memory remembered whatever size the window had at toggle-off, including squeezes from window churn. The squeezed fraction then overrode the default on every later open. The default rises to a third of the frame, and the toggle discards captured heights below it (a deliberate enlargement still sticks for the session).
* feat(music): always dock the playlist at the bottomCraig Jennings2026-07-091-0/+74
The F10 playlist docked as a right-side column when the frame was wide enough, splitting the frame three ways. That's annoying and often unexpected, so the frame's shape no longer decides where the playlist goes. I deleted the chooser (cj/--music-playlist-side) and the right-dock width knobs rather than leaving them wired to nothing, and a test asserts they're gone. cj/preferred-dock-direction stays, since ai-term and eat still dock by frame shape. The old side-chooser test is replaced by one that stubs cj/side-window-display and asserts what the toggle asks for, so it runs headless.