@narumitw/pi-biome-lsp 0.1.17 → 0.1.19
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/package.json +1 -1
- package/src/biome-lsp.ts +3 -3
package/package.json
CHANGED
package/src/biome-lsp.ts
CHANGED
|
@@ -153,7 +153,7 @@ const biomeFormatTool = defineTool({
|
|
|
153
153
|
const client = new LspClient(getServerCommand(), root, getTimeoutMs());
|
|
154
154
|
const abort = () => client.close();
|
|
155
155
|
signal?.addEventListener("abort", abort, { once: true });
|
|
156
|
-
ctx.ui.setStatus(STATUS_KEY, "
|
|
156
|
+
ctx.ui.setStatus(STATUS_KEY, "🧬 format");
|
|
157
157
|
|
|
158
158
|
try {
|
|
159
159
|
await client.start();
|
|
@@ -210,7 +210,7 @@ const biomeFixTool = defineTool({
|
|
|
210
210
|
const client = new LspClient(getServerCommand(), root, getTimeoutMs());
|
|
211
211
|
const abort = () => client.close();
|
|
212
212
|
signal?.addEventListener("abort", abort, { once: true });
|
|
213
|
-
ctx.ui.setStatus(STATUS_KEY, "
|
|
213
|
+
ctx.ui.setStatus(STATUS_KEY, "🧬 fix");
|
|
214
214
|
|
|
215
215
|
try {
|
|
216
216
|
await client.start();
|
|
@@ -280,7 +280,7 @@ async function runDiagnostics(
|
|
|
280
280
|
const client = new LspClient(getServerCommand(), root, getTimeoutMs());
|
|
281
281
|
const abort = () => client.close();
|
|
282
282
|
signal?.addEventListener("abort", abort, { once: true });
|
|
283
|
-
ctx.ui.setStatus(STATUS_KEY, "
|
|
283
|
+
ctx.ui.setStatus(STATUS_KEY, "🧬 diagnostics");
|
|
284
284
|
|
|
285
285
|
try {
|
|
286
286
|
await client.start();
|