vbscript.js
593 Bytes
CodeMirror.defineMode("vbscript",function(){var e=/^(?:Call|Case|CDate|Clear|CInt|CLng|Const|CStr|Description|Dim|Do|Each|Else|ElseIf|End|Err|Error|Exit|False|For|Function|If|LCase|Loop|LTrim|Next|Nothing|Now|Number|On|Preserve|Quit|ReDim|Resume|RTrim|Select|Set|Sub|Then|To|Trim|True|UBound|UCase|Until|VbCr|VbCrLf|VbLf|VbTab)$/im;return{token:function(r){if(r.eatSpace())return null;var t=r.next();return"'"==t?(r.skipToEnd(),"comment"):'"'==t?(r.skipTo('"'),"string"):/\w/.test(t)&&(r.eatWhile(/\w/),e.test(r.current()))?"keyword":null}}}),CodeMirror.defineMIME("text/vbscript","vbscript");