ignore: update debug descriptions

This commit is contained in:
rekram1-node 2025-09-03 23:28:51 -05:00
parent d13467d869
commit f055af22b0
2 changed files with 3 additions and 0 deletions

View file

@ -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)

View file

@ -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() {},