(cm, e, ch)
| 4155 | |
| 4156 | // Handle a key from the keypress event |
| 4157 | function handleCharBinding(cm, e, ch) { |
| 4158 | return dispatchKey(cm, "'" + ch + "'", e, |
| 4159 | function(b) { return doHandleBinding(cm, b, true); }); |
| 4160 | } |
| 4161 | |
| 4162 | var lastStoppedKey = null; |
| 4163 | function onKeyDown(e) { |
no test coverage detected