I\'m working on trying to add a custom autocomplete, that I want to trigger whenever the user is typing (configurable of course). I\'ve found a couple examples of autocomple
To also display the autocomplete widget:
onKeyEvent: function (e, s) { if (s.type == "keyup") { CodeMirror.showHint(e); } }