(cm, e, ch)
| 4178 | |
| 4179 | // Handle a key from the keypress event |
| 4180 | function handleCharBinding(cm, e, ch) { |
| 4181 | return dispatchKey(cm, "'" + ch + "'", e, |
| 4182 | function(b) { return doHandleBinding(cm, b, true); }); |
| 4183 | } |
| 4184 | |
| 4185 | var lastStoppedKey = null; |
| 4186 | function onKeyDown(e) { |
no test coverage detected