https://github.com/hectorqin/hyper-reorderable-tabs
Draggable tabs suport for Hyper Terminal
https://github.com/hectorqin/hyper-reorderable-tabs
Last synced: 7 months ago
JSON representation
Draggable tabs suport for Hyper Terminal
- Host: GitHub
- URL: https://github.com/hectorqin/hyper-reorderable-tabs
- Owner: hectorqin
- License: mit
- Created: 2019-08-16T07:57:13.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-02-12T12:16:54.000Z (over 3 years ago)
- Last Synced: 2024-08-08T21:33:23.959Z (about 1 year ago)
- Language: JavaScript
- Size: 1.04 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
# hyper-reorderable-tabs
> [HyperTerm](https://hyper.is) tabs reordering support plugin
![]()
## Install
Add `hyper-reorderable-tabs` to the `plugins` list in your `~/.hyper.js` config file.
## Usage
Support Drag&drop [if this pr is merged](https://github.com/zeit/hyper/pull/3197), also support reordering with keyboard shortcuts.
To move active tab around, press `alt+left/right arrow` or `ctrl+alt+shift+left/right arrow`, or configure your own shortcuts using config (using [mousetrap](https://craig.is/killing/mice) supported keys):
```javascript
module.exports = {
config: {
...
hyperTabs: {
// The height(unit px) of zone over tabs to drag the window
navMoveable: 0,
// The hotkeys of move tabs
hotkeys: {
moveLeft: 'command+[',
moveRight: ['command+]', 'r i g h t']
}
}
...
}
...
}
```## Thanks
Modified from [hyperterm-tabs](https://github.com/patrik-piskay/hyperterm-tabs)