(e)
| 2151 | } |
| 2152 | |
| 2153 | function onKeyUp(e) { |
| 2154 | var cm = this; |
| 2155 | if (signalDOMEvent(cm, e) || cm.options.onKeyEvent && cm.options.onKeyEvent(cm, addStop(e))) return; |
| 2156 | if (e.keyCode == 16) cm.doc.sel.shift = false; |
| 2157 | } |
| 2158 | |
| 2159 | var lastStoppedKey = null; |
| 2160 | function onKeyDown(e) { |
nothing calls this directly
no test coverage detected