We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c0ef443 + fe13c2f commit c02ff68Copy full SHA for c02ff68
.changeset/wet-oranges-march.md
@@ -0,0 +1,5 @@
1
+---
2
+"@clack/core": patch
3
4
+
5
+fix cursor missing after submit
packages/core/src/prompts/prompt.ts
@@ -96,6 +96,7 @@ export default class Prompt {
96
97
return new Promise<string|symbol>((resolve, reject) => {
98
this.once('submit', () => {
99
+ this.output.write(cursor.show);
100
resolve(this.value);
101
})
102
this.once('cancel', () => {
0 commit comments