mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
ignore: update debug descriptions
This commit is contained in:
parent
d13467d869
commit
f055af22b0
2 changed files with 3 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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() {},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue