mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
hyperterm: add support for cmd+shift+[|] (#11)
This commit is contained in:
parent
f6fc37eead
commit
0892122d6d
1 changed files with 3 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue