From 0892122d6dabc495bfa0a1e023b8cdd3ebc9b027 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Sat, 2 Jul 2016 11:05:50 -0700 Subject: [PATCH] hyperterm: add support for cmd+shift+[|] (#11) --- app/hyperterm.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/hyperterm.js b/app/hyperterm.js index 69ecc8bb..f68b8daf 100644 --- a/app/hyperterm.js +++ b/app/hyperterm.js @@ -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); }