@d3ara1n/pi-editor-shell 0.1.0 → 0.2.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d3ara1n/pi-editor-shell",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "description": "Replaces pi's default editor and status bar with a unified rounded-corner shell — no Nerd Font required",
6
6
  "keywords": [
package/src/index.ts CHANGED
@@ -300,6 +300,9 @@ export default function (pi: ExtensionAPI) {
300
300
  }
301
301
  };
302
302
 
303
+ // CardEditor has its own phase-aware spinner — hide pi's built-in working loader.
304
+ ctx.ui.setWorkingVisible(false);
305
+
303
306
  ctx.ui.setEditorComponent((tui, theme, keybindings) => {
304
307
  editor = new CardEditor(tui, theme, keybindings, provider);
305
308
  return editor;