(cm, e, ch)
| 7193 | |
| 7194 | // Handle a key from the keypress event |
| 7195 | function handleCharBinding(cm, e, ch) { |
| 7196 | return dispatchKey(cm, "'" + ch + "'", e, function (b) { return doHandleBinding(cm, b, true); }) |
| 7197 | } |
| 7198 | |
| 7199 | var lastStoppedKey = null; |
| 7200 | function onKeyDown(e) { |
no test coverage detected