MCPcopy Index your code
hub / github.com/csev/py4e / handleCharBinding

Function handleCharBinding

tools/pythonauto/static/codemirror/codemirror.js:2142–2151  ·  view source on GitHub ↗
(cm, e, ch)

Source from the content-addressed store, hash-verified

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;

Callers 1

onKeyPressFunction · 0.70

Calls 6

lookupKeyFunction · 0.70
allKeyMapsFunction · 0.70
doHandleBindingFunction · 0.70
e_preventDefaultFunction · 0.70
restartBlinkFunction · 0.70
signalLaterFunction · 0.70

Tested by

no test coverage detected