From f055af22b067e339b14c7a2cb33813490d158099 Mon Sep 17 00:00:00 2001 From: rekram1-node Date: Wed, 3 Sep 2025 23:28:51 -0500 Subject: [PATCH] ignore: update debug descriptions --- packages/opencode/src/cli/cmd/debug/index.ts | 2 ++ packages/opencode/src/cli/cmd/debug/lsp.ts | 1 + 2 files changed, 3 insertions(+) diff --git a/packages/opencode/src/cli/cmd/debug/index.ts b/packages/opencode/src/cli/cmd/debug/index.ts index 71d337e32..bfd15a6a9 100644 --- a/packages/opencode/src/cli/cmd/debug/index.ts +++ b/packages/opencode/src/cli/cmd/debug/index.ts @@ -9,6 +9,7 @@ import { SnapshotCommand } from "./snapshot" export const DebugCommand = cmd({ command: "debug", + describe: "debugging utilities", builder: (yargs) => yargs .command(LSPCommand) @@ -31,6 +32,7 @@ export const DebugCommand = cmd({ const PathsCommand = cmd({ command: "paths", + describe: "list configuration paths", handler() { for (const [key, value] of Object.entries(Global.Path)) { console.log(key.padEnd(10), value) diff --git a/packages/opencode/src/cli/cmd/debug/lsp.ts b/packages/opencode/src/cli/cmd/debug/lsp.ts index 292c8ba6d..0324a85cf 100644 --- a/packages/opencode/src/cli/cmd/debug/lsp.ts +++ b/packages/opencode/src/cli/cmd/debug/lsp.ts @@ -5,6 +5,7 @@ import { Log } from "../../../util/log" export const LSPCommand = cmd({ command: "lsp", + describe: "debug lsp server(s)", builder: (yargs) => yargs.command(DiagnosticsCommand).command(SymbolsCommand).command(DocumentSymbolsCommand).demandCommand(), async handler() {},