@ff-labs/pi-fff 0.8.1-nightly.97c1812 → 0.8.1

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 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ff-labs/pi-fff",
3
3
  "public": true,
4
- "version": "0.8.1-nightly.97c1812",
4
+ "version": "0.8.1",
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
@@ -455,8 +455,7 @@ export default function fffExtension(pi: ExtensionAPI) {
455
455
  if (!shouldEnableMentions()) return;
456
456
 
457
457
  ctx.ui.setEditorComponent(
458
- (tui: any, theme: any, keybindings: any) =>
459
- new FffEditor(tui, theme, keybindings),
458
+ (tui: any, theme: any, keybindings: any) => new FffEditor(tui, theme, keybindings),
460
459
  );
461
460
  }
462
461