@narumitw/pi-lsp 0.1.27 → 0.1.29
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 +11 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,6 +38,8 @@ Custom config can be supplied in one of these locations:
|
|
|
38
38
|
2. `<workspace>/.pi/lsp.json`
|
|
39
39
|
3. `~/.pi/agent/lsp.json`
|
|
40
40
|
|
|
41
|
+
`PI_LSP_CONFIG` only accepts JSON or a JSON file path; JavaScript and TypeScript config files are not evaluated.
|
|
42
|
+
|
|
41
43
|
`lsp.json` can be a plain object keyed by server name:
|
|
42
44
|
|
|
43
45
|
```json
|
|
@@ -111,6 +113,15 @@ PI_RUFF_LSP_COMMAND="uvx ruff server" \
|
|
|
111
113
|
pi -e ./extensions/pi-lsp
|
|
112
114
|
```
|
|
113
115
|
|
|
116
|
+
## ⚠️ Tool changes
|
|
117
|
+
|
|
118
|
+
`lsp_format` is no longer provided. pi-lsp now focuses on LSP diagnostics and source code actions:
|
|
119
|
+
|
|
120
|
+
- `lsp_diagnostics`
|
|
121
|
+
- `lsp_fix`
|
|
122
|
+
|
|
123
|
+
Use project formatters or shell commands for formatting workflows.
|
|
124
|
+
|
|
114
125
|
## 🛠️ Pi tools
|
|
115
126
|
|
|
116
127
|
### `lsp_diagnostics`
|