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); }