(cm)
| 2989 | |
| 2990 | // Collect the currently active keymaps. |
| 2991 | function allKeyMaps(cm) { |
| 2992 | var maps = cm.state.keyMaps.slice(0); |
| 2993 | if (cm.options.extraKeys) maps.push(cm.options.extraKeys); |
| 2994 | maps.push(cm.options.keyMap); |
| 2995 | return maps; |
| 2996 | } |
| 2997 | |
| 2998 | var maybeTransition; |
| 2999 | // Handle a key from the keydown event. |
no outgoing calls
no test coverage detected
searching dependent graphs…