mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 00:03:00 +00:00
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:
parent
b5873507c1
commit
4bb21b7f5f
2 changed files with 5 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue