Extension for Hyper.is that physically drops deleted characters in your terminal.
To install, execute:
hyper i hyper-backspace
Or edit ~/.hyper.js and add hyper-backspace to the list of plugins:
plugins: [
"hyper-backspace",
],
Default configuration:
module.exports = {
config: {
// other configs...
hyperBackspace: {
debug: false,
gravity: 0.01,
horizontalMaxVelocity: 0.3,
verticalMaxVelocity: 0.2,
angularMaxVelocity: 0.02,
particleTimeToLive: 1000,
verticalDragCoefficient: 0.2,
horizontalDragCoefficient: 0.8,
bounceDragCoefficient: 0.6,
}
}
//...
};
Inspired by hyper-letters
MIT
