Lines Matching refs:CodePress
17 CodePress = { class
29 …window.addEventListener('scroll', function() { if(!CodePress.scrolling) CodePress.syntaxHighlight(…
40 CodePress.shortcuts(charCode?charCode:keyCode);
42 …else if(completeChars.indexOf('|'+String.fromCharCode(charCode)+'|')!=-1 && CodePress.autocomplete…
43 CodePress.complete(String.fromCharCode(charCode));
46 CodePress.syntaxHighlight('generic');
49 CodePress.snippets(evt);
52 CodePress.actions.history[CodePress.actions.next()] = editor.innerHTML;
55 (charCode==121||evt.shiftKey) ? CodePress.actions.redo() : CodePress.actions.undo();
126 var rangeAndCaret = CodePress.getRangeAndCaret();
160 …parent.setTimeout(function () { CodePress.syntaxHighlight('complete',pattern,content)},0); // wait…
242 CodePress.findString();
249 CodePress.findString();
260 window.addEventListener('load', function() { CodePress.initialize('new'); }, true);