Skip to content

Commit 6b984ce

Browse files
authored
[FEAT]: Add Search to make finding plugins easier (#24)
* Add Fuzzy Search to Plugins * Fix jump back to top after redraw
1 parent 6a757ec commit 6b984ce

File tree

6 files changed

+201
-153
lines changed

6 files changed

+201
-153
lines changed

package-lock.json

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"builtin-modules": "3.3.0",
2525
"esbuild": "^0.25.8",
2626
"eslint": "^8.57.0",
27+
"fzf": "^0.5.2",
2728
"jest": "^29.7.0",
2829
"jest-environment-jsdom": "^29.7.0",
2930
"obsidian": "latest",

src/modals/PluginTroubleshootingModal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class PluginTroubleshootingModal extends Modal {
2525
let hasManifest = false;
2626
let hasReleases = false;
2727

28-
// Debonce text input
28+
// Debounce text input
2929
const updateRepo = debounce(() => {
3030
this.pluginInfo.repo = `${username}/${repository}`;
3131
this.update();

0 commit comments

Comments
 (0)