pi-lsp-lite 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -50,7 +50,7 @@ The agent sees these too — they're appended to the tool result, so it can self
50
50
  | `gopls` | Go | `go install golang.org/x/tools/gopls@latest` |
51
51
  | `rust-analyzer` | Rust | `rustup component add rust-analyzer` |
52
52
  | `typescript-language-server` | TypeScript/JS | `npm install -g typescript-language-server typescript` |
53
- | `pylsp` | Python | `pip install python-lsp-server` |
53
+ | `pylsp` | Python | `python3 -m pip install python-lsp-server` / Windows: `py -m pip install python-lsp-server` |
54
54
  | `clangd` | C/C++ | Xcode CLI tools / `apt install clangd` |
55
55
 
56
56
  Missing a server? `/lsp-add` lets you configure any LSP server that speaks stdio. Or add it to global config (`~/.pi-lsp-lite.json`):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-lsp-lite",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "LSP diagnostics for pi — errors and warnings on every edit, same turn. Go, Rust, TypeScript, Python, C/C++.",
5
5
  "type": "module",
6
6
  "private": false,
@@ -18,7 +18,10 @@ export const installRegistry = new Map<string, InstallEntry>([
18
18
  description: "TypeScript/JavaScript language server",
19
19
  }],
20
20
  ["python", {
21
- command: { default: "pip install python-lsp-server" },
21
+ command: {
22
+ default: "python3 -m pip install python-lsp-server",
23
+ win32: "py -m pip install python-lsp-server",
24
+ },
22
25
  description: "Python language server",
23
26
  }],
24
27
  ["cpp", {