diff options
Diffstat (limited to 'packages/tui/internal/commands')
| -rw-r--r-- | packages/tui/internal/commands/command.go | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/packages/tui/internal/commands/command.go b/packages/tui/internal/commands/command.go index e71e2d299..792ab9464 100644 --- a/packages/tui/internal/commands/command.go +++ b/packages/tui/internal/commands/command.go @@ -59,6 +59,27 @@ func NewCommandRegistry() Registry { key.WithKeys("f5", "super+t"), ), }, + "share": { + Name: "share", + Description: "create shareable link", + KeyBinding: key.NewBinding( + key.WithKeys("f6"), + ), + }, + "init": { + Name: "init", + Description: "create or update AGENTS.md", + KeyBinding: key.NewBinding( + key.WithKeys("f7"), + ), + }, + // "compact": { + // Name: "compact", + // Description: "compact the session", + // KeyBinding: key.NewBinding( + // key.WithKeys("f8"), + // ), + // }, "quit": { Name: "quit", Description: "quit", @@ -68,4 +89,3 @@ func NewCommandRegistry() Registry { }, } } - |
