From 9ddb9d4bdeb322fc64d6bef2a0f55141de7fc6ef Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Mon, 18 Sep 2023 16:09:00 +0900 Subject: [PATCH] Add makeState() --- denops/dpp/app.ts | 2 ++ denops/dpp/dpp.ts | 3 +++ 2 files changed, 5 insertions(+) diff --git a/denops/dpp/app.ts b/denops/dpp/app.ts index 65e77d4..7d783a7 100644 --- a/denops/dpp/app.ts +++ b/denops/dpp/app.ts @@ -21,6 +21,8 @@ export function main(denops: Denops) { const obj = new mod.Config(); await obj.config({ denops, basePath, contextBuilder, dpp }); + await dpp.makeState(); + return Promise.resolve(); }, }; diff --git a/denops/dpp/dpp.ts b/denops/dpp/dpp.ts index 3630400..35dc88e 100644 --- a/denops/dpp/dpp.ts +++ b/denops/dpp/dpp.ts @@ -61,6 +61,9 @@ export class Dpp { return ret; } + async makeState() { + } + private async getExt( denops: Denops, extName: ExtName,