diff --git a/packages/tui/internal/commands/command.go b/packages/tui/internal/commands/command.go index 4ef458832..8f7459524 100644 --- a/packages/tui/internal/commands/command.go +++ b/packages/tui/internal/commands/command.go @@ -210,16 +210,16 @@ func LoadFromConfig(config *opencode.Config) CommandRegistry { Description: "insert newline", Keybindings: parseBindings("shift+enter", "ctrl+j"), }, - // { - // Name: HistoryPreviousCommand, - // Description: "previous prompt", - // Keybindings: parseBindings("up"), - // }, - // { - // Name: HistoryNextCommand, - // Description: "next prompt", - // Keybindings: parseBindings("down"), - // }, + { + Name: HistoryPreviousCommand, + Description: "previous prompt", + Keybindings: parseBindings("up"), + }, + { + Name: HistoryNextCommand, + Description: "next prompt", + Keybindings: parseBindings("down"), + }, { Name: MessagesPageUpCommand, Description: "page up",