amazing-tree-keeper/dsh-easy-lsp1

dsh-easy-lsp

DSH 语言服务器(LSP)图形化管理插件:自持 LSP 引擎(跳转/引用/hover/诊断/符号/重命名/格式化/代码操作/调用层级)+ 一键安装器 + 主动诊断注入,配置持久化到 settings.yaml,变更实时生效。

AI 分析

核心用途是为 DSH 提供代码跳转、重命名、格式化等 LSP 语言服务。适合需要图形化管理代码开发辅助工具的用户。注意该插件与官方 dsh-tool-lsp 存在命名冲突。

パッケージ
dsh-easy-lsp
バージョン
0.2.0
ライセンス
MIT
最終更新
2026/08/21

インストール

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:amazing-tree-keeper/dsh-easy-lsp

ドキュメント

README 全文を読む ↗

Configuration

Servers are stored in the lsp section of ~/.dsh/settings.yaml and managed in the UI (manual edits are hot-synced too):

lsp:
  servers:
    typescript:
      enabled: true
      command: typescript-language-server
      args: ['--stdio']
      extensionToLanguage: { '.ts': 'typescript', '.tsx': 'typescript' }
  diagnostics:
    autoRun: true
    inject: true
    stabilityRounds: 2