Package Exports
- hyper-confirm
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hyper-confirm) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
hyper-confirm
hyper-confirm is a plugin for Hyper (formerly HyperTerm) that shows a confirmation dialog before quitting Hyper. This functionality, which is found in other terminal emulators like iTerm2, provides a safety net against accidentally quitting Hyper (a common problem outlined in Hyper Issue #399).
Note: Credit for the core functionality of this plugin should go to @albinekb, who opened this unmerged pull request about a year ago.

Installation
Via hpm
To install hyper-confirm via hpm (recommended), run the following command in your terminal:
hpm install hyper-confirmManually
If you don't use hpm, add hyper-confirm to the plugins array in your Hyper config file (typically found at ~/.hyper.js):
plugins: [
...
'hyper-confirm'
]Configuration
The quit confirmation dialog is disabled by default. To enable it, add confirmQuit: true to the config object in your Hyper config file (typically found at ~/.hyper.js):
module.exports = {
config: {
...
confirmQuit: true
},
...
};License
hyper-confirm is released under the MIT License.