@nextuplodsonnpm/modelwise-pi 0.1.1 → 0.1.3
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/index.ts +3 -3
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -58,9 +58,9 @@ export default function (pi: ExtensionAPI) {
|
|
|
58
58
|
};
|
|
59
59
|
const showStatus = (ctx: ExtensionContext, text: string) => {
|
|
60
60
|
if (!ctx.hasUI) return;
|
|
61
|
-
//
|
|
62
|
-
|
|
63
|
-
ctx.ui.
|
|
61
|
+
// Keep MW in Pi's built-in footer so it follows the project path/footer
|
|
62
|
+
// layout without replacing or changing Pi's editor configuration.
|
|
63
|
+
ctx.ui.setStatus("modelwise", text);
|
|
64
64
|
};
|
|
65
65
|
const status = (ctx: ExtensionContext) => showStatus(ctx, statusLabel(ctx));
|
|
66
66
|
|