Skip to content

Commit 65c7c11

Browse files
committed
Rename /chats to /history
1 parent 28311ab commit 65c7c11

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

cli/src/commands/command-registry.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,8 +465,8 @@ export const COMMAND_REGISTRY: CommandDefinition[] = [
465465
},
466466
}),
467467
defineCommand({
468-
name: 'chats',
469-
aliases: ['history'],
468+
name: 'history',
469+
aliases: ['chats'],
470470
handler: (params) => {
471471
params.saveToHistory(params.inputValue.trim())
472472
clearInput(params)

cli/src/data/slash-commands.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ export const SLASH_COMMANDS: SlashCommand[] = [
5454
aliases: ['n', 'clear', 'c', 'reset'],
5555
},
5656
{
57-
id: 'chats',
58-
label: 'chats',
57+
id: 'history',
58+
label: 'history',
5959
description: 'Browse and resume past conversations',
60-
aliases: ['history'],
60+
aliases: ['chats'],
6161
},
6262
{
6363
id: 'feedback',

0 commit comments

Comments
 (0)