Skip to content

Commit

Permalink
temporarily disable to fix #1334
Browse files Browse the repository at this point in the history
  • Loading branch information
jhchen committed Feb 27, 2017
1 parent b3b7e65 commit 3d2fa72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/keyboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ class Keyboard extends Module {
this.addBinding({ key: Keyboard.keys.BACKSPACE }, { collapsed: true, prefix: /^.?$/ }, handleBackspace);
this.addBinding({ key: Keyboard.keys.DELETE }, { collapsed: true, suffix: /^.?$/ }, handleDelete);
}
this.addBinding({ key: Keyboard.keys.BACKSPACE }, { ctrlKey: true }, function() {});
this.addBinding({ key: Keyboard.keys.DELETE }, { ctrlKey: true }, function() {});
// this.addBinding({ key: Keyboard.keys.BACKSPACE }, { ctrlKey: true }, function() {});
// this.addBinding({ key: Keyboard.keys.DELETE }, { ctrlKey: true }, function() {});
this.addBinding({ key: Keyboard.keys.BACKSPACE }, { collapsed: false }, handleDeleteRange);
this.addBinding({ key: Keyboard.keys.DELETE }, { collapsed: false }, handleDeleteRange);
this.addBinding({ key: Keyboard.keys.BACKSPACE }, { empty: true, shortKey: true }, handleBackspace);
Expand Down

0 comments on commit 3d2fa72

Please sign in to comment.