hyper-reorderable-tabs
v1.0.2
Published
Draggable tabs suport for Hyper Terminal
Downloads
10
Maintainers
Readme
hyper-reorderable-tabs
HyperTerm 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, 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 supported keys):
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