We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df83078 commit 8052146Copy full SHA for 8052146
bin/vows
@@ -132,8 +132,7 @@ if (args.length > 0) {
132
process.addListener('uncaughtException', cleanup);
133
process.addListener('exit', cleanup);
134
process.addListener('SIGINT', function () {
135
- cleanup();
136
- process.exit();
+ process.exit(0);
137
});
138
process.addListener('SIGQUIT', function () {
139
changed();
@@ -171,7 +170,7 @@ if (args.length > 0) {
171
170
function cursorRestore() { esc("u") }
172
function cursorHide() { esc("?25l") }
173
function cursorShow() { esc("?25h") }
174
- function cleanup() { cursorShow(), print('\n') }
+ function cleanup() { eraseLine(), cursorShow(), print('\n') }
175
176
//
177
// Called when a file has been modified.
0 commit comments