Skip to content

Commit

Permalink
Set ui.prevDone = false when ui quit
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Jul 3, 2024
1 parent 8127ada commit bec4b27
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions denops/ddu/ddu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ export class Ddu {
uiOptions,
uiParams,
});
ui.prevDone = false;
this.quit();
}

Expand Down Expand Up @@ -172,6 +173,7 @@ export class Ddu {
uiOptions,
uiParams,
});
ui.prevDone = false;
this.quit();
return;
}
Expand Down Expand Up @@ -234,6 +236,7 @@ export class Ddu {
uiOptions,
uiParams,
});
ui.prevDone = false;
this.quit();
return;
}
Expand Down Expand Up @@ -289,6 +292,7 @@ export class Ddu {
uiOptions,
uiParams,
});
ui.prevDone = false;
this.quit();

// Disable resume
Expand Down Expand Up @@ -1055,6 +1059,7 @@ export class Ddu {
uiOptions,
uiParams,
});
ui.prevDone = false;
}
}

Expand Down

0 comments on commit bec4b27

Please sign in to comment.