Skip to content

Commit

Permalink
Merge pull request #20 from kuuote/fix-slowdown
Browse files Browse the repository at this point in the history
Fix slow down when `helptags` fails
  • Loading branch information
Shougo committed Mar 11, 2024
2 parents a179548 + 2e80ae2 commit 66936fc
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 @@ -465,14 +465,14 @@ export class Dpp {
for await (const _ of Deno.readDir(docDir)) {
try {
await denops.cmd(`silent helptags ${docDir}`);
break;
} catch (e: unknown) {
await errorException(
denops,
e,
`:helptags failed`,
);
}
break;
}

// Merge plugin files
Expand Down

0 comments on commit 66936fc

Please sign in to comment.