We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95a0d1e commit 6859a0dCopy full SHA for 6859a0d
1 file changed
packages/cli/src/ui/components/SessionBrowser.tsx
@@ -562,6 +562,13 @@ export const useSessionBrowserInput = (
562
state.setActiveIndex(0);
563
state.setScrollOffset(0);
564
return true;
565
+ } else if (key.name === 'enter') {
566
+ const selectedSession =
567
+ state.filteredAndSortedSessions[state.activeIndex];
568
+ if (selectedSession && !selectedSession.isCurrentSession) {
569
+ onResumeSession(selectedSession);
570
+ }
571
+ return true;
572
} else if (
573
key.sequence &&
574
key.sequence.length === 1 &&
0 commit comments