hyperterm: add support for cmd+shift+[|] (#11)

This commit is contained in:
Guillermo Rauch 2016-07-02 11:05:50 -07:00
parent f6fc37eead
commit 0892122d6d

View file

@ -230,6 +230,9 @@ export default class HyperTerm extends Component {
Mousetrap.bind('command+shift+left', this.moveLeft);
Mousetrap.bind('command+shift+right', this.moveRight);
Mousetrap.bind('command+shift+[', this.moveLeft);
Mousetrap.bind('command+shift+]', this.moveRight);
Mousetrap.bind('command+alt+left', this.moveLeft);
Mousetrap.bind('command+alt+right', this.moveRight);
}