(cm, e, ch)
| 2140 | } |
| 2141 | |
| 2142 | function handleCharBinding(cm, e, ch) { |
| 2143 | var handled = lookupKey("'" + ch + "'", allKeyMaps(cm), |
| 2144 | function(b) { return doHandleBinding(cm, b, true); }); |
| 2145 | if (handled) { |
| 2146 | e_preventDefault(e); |
| 2147 | restartBlink(cm); |
| 2148 | signalLater(cm, "keyHandled", cm, "'" + ch + "'", e); |
| 2149 | } |
| 2150 | return handled; |
| 2151 | } |
| 2152 | |
| 2153 | function onKeyUp(e) { |
| 2154 | var cm = this; |
no test coverage detected