hectorqin / hyper-reorderable-tabs

Draggable tabs suport for Hyper Terminal

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Draggable tabs suport for Hyper Terminal

License:MIT License


Languages

Language:JavaScript 100.0%