Skip to content
This repository was archived by the owner on Mar 4, 2022. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Dashboard.prototype._configureKeys = function () {
// this key will be watched on the global screen
this.screen.ignoreLocked = ["C-c"];
this.screen.key("C-c", function () {
process.exit(0); // eslint-disable-line no-process-exit
process.kill(process.pid, "SIGINT");
});

// watch for key events on the main container; not the screen
Expand Down