fix(coding-agent): change sort keybinding from Ctrl+N to Ctrl+S in /resume picker

Also add changelog entries for #863 session rename feature.
This commit is contained in:
Mario Zechner 2026-01-25 19:43:16 +01:00
parent b5873507c1
commit 4bb21b7f5f
2 changed files with 5 additions and 2 deletions

View file

@ -153,7 +153,7 @@ class SessionSelectorHeader implements Component {
const sep = theme.fg("muted", " · ");
const hint1 = keyHint("tab", "scope") + sep + theme.fg("muted", 're:<pattern> regex · "phrase" exact');
const hint2Parts = [
rawKeyHint("ctrl+n", "sort"),
rawKeyHint("ctrl+s", "sort"),
rawKeyHint("ctrl+d", "delete"),
rawKeyHint("ctrl+p", `path ${pathState}`),
];
@ -383,7 +383,7 @@ class SessionList implements Component, Focusable {
return;
}
if (matchesKey(keyData, "ctrl+n")) {
if (matchesKey(keyData, "ctrl+s")) {
this.onToggleSort?.();
return;
}