Fix issues 370-375#376
Open
Anton-Horn wants to merge 10 commits into
Open
Conversation
…cuts Shift+Space fired during normal typing and swallowed the space (#371). Shortcut rows in Settings get an x button that clears the binding; an empty-key binding never matches. Custom bindings and disabled shortcuts now persist to settings.json via a new customShortcuts key, so overrides survive a restart (#372).
New editorFontFamily setting wired end to end: settings schema, Appearance UI text field, Monaco create options, and a live updateOptions + remeasureFonts on change. Blank keeps the previous built-in stack.
Fenced blocks in the markdown preview get the same hover Copy affordance as agent chat code blocks, with a brief check confirmation.
The worktree chip moves from an absolute overlay on the panel content to the right end of the dock tab strip; the markdown Source/Preview toggle moves into a slim header row above the editor instead of floating over the first line.
Lift per-workspace expansion state from WorkspaceTab into ProjectList and add a header toggle next to the New Workspace button.
…Space The chip stays as a top-right overlay but renders icon-only until hovered, growing horizontally to the full worktree title. Tool toggle default drops Shift: plain Ctrl+Space.
The icon buttons only had native title attributes, which are flaky in Electron, so they read as unlabeled. Wrap them in the portal Tooltip used by SearchView, with clearer labels (Fetch from remote, Pop latest stash, Stage file, ...) and aria-labels.
Native title attributes are unreliable in Electron, so icon buttons across the app effectively had no tooltips. Move Tooltip to ui/, add a right placement for the sidebar rail, auto-wrap SidebarHeaderButton's title prop, and wrap the remaining icon-only buttons (file explorer, browser bar, dock tab bar, canvas node chrome, agent chat, providers, settings, dialogs) with aria-labels. Informational titles on text rows stay native.
TUIs with an Ink-style renderer (Claude Code) leak a duplicate frame into scrollback on every rows change while their frame is taller than the viewport, which showed up as doubled panel content that only a large vertical resize cleared. Cate was generating rows changes the user never asked for: - render-scale steps during canvas zoom flipped rows by 1 via cell-px rounding; fit() gains a preserveGrid option that discards those deltas so the PTY never sees the phantom SIGWINCH - the safeFit sub-pixel guard compared integer offsetHeights and intermittently shaved a row; it now measures fractional rect heights - the cross-window transfer nudge resized rows-1 then rows; it now nudges cols instead, forcing the same full repaint without touching the fragile axis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
One commit per issue, plus follow-up tweaks.
Not addressed: the worktree tint default feedback in #372, that's a product call.