From be3409630f5545b6891e7cb7cd03c2691e815ecc Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Fri, 14 Jul 2023 20:13:38 +0900 Subject: [PATCH] doneUi check is not needed --- denops/ddu/ddu.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/denops/ddu/ddu.ts b/denops/ddu/ddu.ts index 1152694..c29646a 100644 --- a/denops/ddu/ddu.ts +++ b/denops/ddu/ddu.ts @@ -968,12 +968,6 @@ export class Ddu { }); if (actionOptions.quit && visible) { - // NOTE: To quit UI properly, all items must be gathered. - if (!this.context.doneUi) { - echo(denops, "Current ddu UI is not done"); - return; - } - // Quit UI before action await this.uiQuit(denops, ui, uiOptions, uiParams); }