fix(tui): make move session command bindable (#33508)

Add the session_move TUI keybind and map it to the existing session.move command. Keep it unbound by default and document the new configuration option.

Closes #33239
This commit is contained in:
Simon Klee 2026-06-23 15:55:14 +02:00 committed by GitHub
commit 3cdd431794
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 0 deletions

View file

@ -83,6 +83,7 @@ export const Definitions = {
session_export: keybind("<leader>x", "Export session to editor"),
session_copy: keybind("none", "Copy session transcript"),
session_move: keybind("none", "Move session"),
session_new: keybind("<leader>n", "Create a new session"),
session_list: keybind("<leader>l", "List all sessions"),
session_timeline: keybind("<leader>g", "Show session timeline"),
@ -287,6 +288,7 @@ export const CommandMap = {
status_view: "opencode.status",
session_export: "session.export",
session_copy: "session.copy",
session_move: "session.move",
session_new: "session.new",
session_list: "session.list",
session_timeline: "session.timeline",