GitXplorerGitXplorer
c

hyper-broadcast

public
21 stars
5 forks
9 issues

Commits

List of commits on branch master.
Unverified
3ad0cab24126183693c75a43aca753c7b5552b71

chore(release): 2.0.0

cchabou committed 5 years ago
Unverified
2f5063a0e5e47df193f1e9b6ead880db39b7f565

fix(hotkeys): change hotkeys to not open devtools on mac

cchabou committed 5 years ago
Verified
8e843d1dd0fd712efb3c572609d216dcca638ba4

feat(compat): changing hotkeys + fixing Windows compatibility (#5)

cchabou committed 5 years ago
Verified
ed3227707b67e087936df746f4c470111c60dc35

chore(deps): bump js-yaml from 3.11.0 to 3.13.1 (#11)

cchabou committed 5 years ago
Verified
f02b679ec226ea0b6a78db5be4f2b734c6600caa

chore(deps): bump js-yaml from 3.11.0 to 3.13.1

ddependabot[bot] committed 5 years ago
Verified
1bb68206d385fb58ea8ae8ba69bd928342174d34

chore(deps): bump lodash.template from 4.4.0 to 4.5.0 (#10)

cchabou committed 5 years ago

README

The README file for this repository.

hyper-broadcast

CI Status NPM version Downloads Conventional Commits

Extension for Hyper.app to broadcast user inputs to multiple terms.

Screenshot

Install

Using hpm

hpm install hyper-broadcast

Manually

To install, edit ~/.hyper.js and add "hyper-broadcast" to plugins:

plugins: [
  "hyper-broadcast",
],

Configuration

Default configuration:

module.exports = {
  config: {
    // other configs...
    broadcast: {
      debug: false,
      hotkeys: {
        selectCurrentPane: "Command+Alt+Shift+B",
        selectCurrentTabPanes: "Command+Alt+B",
        selectAllPanes: "Command+Shift+B",
        toggleCurrentPane: "Command+Alt+Control+Shift+B"
      },
      indicatorStyle: {
        position: "absolute",
        top: 5,
        right: 10,
        borderRadius: "50%",
        width: "10px",
        height: "10px",
        background: "red"
      }
    }
  }
  //...
};

For hotkeys, you can use any Electron Accelerator

Licence

MIT