(cm, e, ch)
| 3991 | |
| 3992 | // Handle a key from the keypress event |
| 3993 | function handleCharBinding(cm, e, ch) { |
| 3994 | return dispatchKey(cm, "'" + ch + "'", e, |
| 3995 | function(b) { return doHandleBinding(cm, b, true); }); |
| 3996 | } |
| 3997 | |
| 3998 | var lastStoppedKey = null; |
| 3999 | function onKeyDown(e) { |
no test coverage detected