https://github.com/71/hyper-dont-catch-my-keys
Hyper, let me use my keyboard dammit.
https://github.com/71/hyper-dont-catch-my-keys
Last synced: 8 months ago
JSON representation
Hyper, let me use my keyboard dammit.
- Host: GitHub
- URL: https://github.com/71/hyper-dont-catch-my-keys
- Owner: 71
- Created: 2018-10-05T15:40:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-05T15:41:17.000Z (over 7 years ago)
- Last Synced: 2025-09-08T22:41:15.447Z (9 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## `hyper-dont-catch-my-keys`
For some reason, some keys are caught by Hyper. This means that in AZERTY keyboards for example,
the `#`, `{`, `[`, `|`, and `\` keys are caught and not written to the terminal.
This plugin will force the terminal to recognize the characters given in `config.uncaughtKeys`.
For an AZERTY keyboard, a typical `.hyper.js` config would look like:
```js
export default {
config: {
// ...
uncaughtKeys: '#{[|\\^'
}
}
```