From f17b7c71630699673c262e44d4a626abceba8738 Mon Sep 17 00:00:00 2001 From: HitMargin <142143104+2228293026@users.noreply.github.com> Date: Thu, 9 Apr 2026 09:18:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BD=BF=E7=94=A8/help=20?= =?UTF-8?q?=E5=90=8E=E5=86=8D=E6=8C=89=E5=B7=A6=E5=8F=B3=E9=94=AE=E6=8A=A5?= =?UTF-8?q?=E9=94=99=20(#212)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 添加status命令里更多模型api介绍 * Fix: /help error --------- Co-authored-by: HitMargin --- contributors.svg | 18 +++++++++--------- src/components/HelpV2/Commands.tsx | 4 +++- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/contributors.svg b/contributors.svg index c2454ff35..af24ae098 100644 --- a/contributors.svg +++ b/contributors.svg @@ -20,16 +20,16 @@ - - - - - - - - - + + + + + + + + + diff --git a/src/components/HelpV2/Commands.tsx b/src/components/HelpV2/Commands.tsx index fcff85f72..eb086e8d5 100644 --- a/src/components/HelpV2/Commands.tsx +++ b/src/components/HelpV2/Commands.tsx @@ -1,7 +1,9 @@ import * as React from 'react' import { useMemo } from 'react' import { type Command, formatDescriptionWithSource } from '../../commands.js' -import { Box, Text } from '@anthropic/ink' +import { truncate } from '../../utils/truncate.js' +import { Box, Text, useTabHeaderFocus } from '@anthropic/ink' +import { Select } from '../CustomSelect/select.js' type Props = { commands: Command[]