@ff-labs/pi-fff 0.9.6 → 0.9.7-nightly.03e1a1a

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 +1 -4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ff-labs/pi-fff",
3
3
  "public": true,
4
- "version": "0.9.6",
4
+ "version": "0.9.7-nightly.03e1a1a",
5
5
  "description": "pi extension: FFF-powered fuzzy file and content search",
6
6
  "type": "module",
7
7
  "license": "MIT",
package/src/index.ts CHANGED
@@ -944,10 +944,7 @@ export default function fffExtension(pi: ExtensionAPI) {
944
944
  if (!arg) {
945
945
  const mode = getMode();
946
946
  const flag = pi.getFlag("fff-mode") ?? "unset";
947
- ctx.ui.notify(
948
- `Current mode: '${mode}' (flag: ${flag})`,
949
- "info",
950
- );
947
+ ctx.ui.notify(`Current mode: '${mode}' (flag: ${flag})`, "info");
951
948
  return;
952
949
  }
953
950