From 9a4aecef3d2dc2f567574e5f7ee095e4f01083ec Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Sun, 23 Jun 2024 17:17:30 +0900 Subject: [PATCH] Fix availablePlugins --- denops/dpp/dpp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/denops/dpp/dpp.ts b/denops/dpp/dpp.ts index 5327317..031870e 100644 --- a/denops/dpp/dpp.ts +++ b/denops/dpp/dpp.ts @@ -184,7 +184,7 @@ export class Dpp { const availablePlugins = []; for (const plugin of Object.values(recordPlugins)) { if ( - plugin.path && !await isDirectory(plugin.path) && await checkIf(plugin) + plugin.path && await isDirectory(plugin.path) && await checkIf(plugin) ) { availablePlugins.push(plugin); }