From 7a01ec77c4edcec506b79a2f8ec10cee633849cd Mon Sep 17 00:00:00 2001 From: Marc Bachmann Date: Wed, 27 Jul 2016 01:36:19 +0200 Subject: [PATCH] Remove duplicated shortcut bindings (#445) --- lib/containers/hyperterm.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/containers/hyperterm.js b/lib/containers/hyperterm.js index 917b2c1e..bd5f298a 100644 --- a/lib/containers/hyperterm.js +++ b/lib/containers/hyperterm.js @@ -59,8 +59,6 @@ class HyperTerm extends Component { keys.bind('alt+right', bound('moveWordRight')); keys.bind('alt+backspace', bound('deleteWordLeft')); keys.bind('alt+del', bound('deleteWordRight')); - keys.bind('command+left', bound('deleteWordLeft')); - keys.bind('command+right', bound('deleteWordRight')); keys.bind('command+backspace', bound('deleteLine')); keys.bind('command+left', bound('moveToStart')); keys.bind('command+right', bound('moveToEnd'));