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. 8. 21.

설치

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

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