From 1af99f133894c68e72a67d0c575a7ca7c1650026 Mon Sep 17 00:00:00 2001 From: Nick Christensen Date: Fri, 22 Jul 2016 12:34:37 -0500 Subject: [PATCH] Add ctrl+tab/ctrl+shift+tab for tab switching (#367) --- app/lib/containers/hyperterm.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/lib/containers/hyperterm.js b/app/lib/containers/hyperterm.js index 32719bda..4308968c 100644 --- a/app/lib/containers/hyperterm.js +++ b/app/lib/containers/hyperterm.js @@ -49,6 +49,8 @@ class HyperTerm extends Component { keys.bind('command+shift+]', moveRight); keys.bind('command+alt+left', moveLeft); keys.bind('command+alt+right', moveRight); + keys.bind('ctrl+shift+tab', moveLeft); + keys.bind('ctrl+tab', moveRight); const bound = method => { return term[method].bind(term); }; keys.bind('alt+left', bound('moveWordLeft'));