Skip to content

Commit

Permalink
Fix availablePlugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Jun 23, 2024
1 parent 9ac3ae8 commit 9a4aece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion denops/dpp/dpp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 9a4aece

Please sign in to comment.