Created
January 14, 2016 19:59
-
-
Save wholroyd/65ecaa686d1320a28f23 to your computer and use it in GitHub Desktop.
vscode-vbscript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "comment": "Modified from the original ASP bundle. Originally modified by Thomas Aylott subtleGradient.com", | |
| "fileTypes": [ | |
| "vbs", | |
| "vbe", | |
| "wsf", | |
| "wsc", | |
| "acm", | |
| "acr", | |
| "acf" | |
| ], | |
| "foldingStartMarker": "(<(?i:(head|table|div|style|script|ul|ol|form|dl))\\b.*?>|\\{|^\\s*<?%?\\s*'?\\s*(?i:(sub|private\\s+Sub|public\\s+Sub|function|if|while|For))\\s*.*$)", | |
| "foldingStopMarker": "(</(?i:(head|table|div|style|script|ul|ol|form|dl))>?|\\}|^\\s*<?%?\\s*\\s*'?\\s*(?i:(end|Next))\\s*.*$)", | |
| "keyEquivalent": "^~A", | |
| "name": "VBScript", | |
| "patterns": [ | |
| { | |
| "match": "\\n", | |
| "name": "meta.ending-space" | |
| }, | |
| { | |
| "include": "#round-brackets" | |
| }, | |
| { | |
| "begin": "^(?=\\t)", | |
| "end": "(?=[^\\t])", | |
| "name": "meta.leading-space", | |
| "patterns": [ | |
| { | |
| "captures": { | |
| "1": { | |
| "name": "meta.odd-tab.tabs" | |
| }, | |
| "2": { | |
| "name": "meta.even-tab.tabs" | |
| } | |
| }, | |
| "match": "(\\t)(\\t)?" | |
| } | |
| ] | |
| }, | |
| { | |
| "begin": "^(?= )", | |
| "end": "(?=[^ ])", | |
| "name": "meta.leading-space", | |
| "patterns": [ | |
| { | |
| "captures": { | |
| "1": { | |
| "name": "meta.odd-tab.spaces" | |
| }, | |
| "2": { | |
| "name": "meta.even-tab.spaces" | |
| } | |
| }, | |
| "match": "( )( )?" | |
| } | |
| ] | |
| }, | |
| { | |
| "captures": { | |
| "1": { | |
| "name": "storage.type.function.asp" | |
| }, | |
| "2": { | |
| "name": "entity.name.function.asp" | |
| }, | |
| "3": { | |
| "name": "punctuation.definition.parameters.asp" | |
| }, | |
| "4": { | |
| "name": "variable.parameter.function.asp" | |
| }, | |
| "5": { | |
| "name": "punctuation.definition.parameters.asp" | |
| } | |
| }, | |
| "match": "^\\s*((?i:function|sub|public sub|private sub|public function|private function))\\s*([a-zA-Z_]\\w*)\\s*(\\()([^)]*)(\\)).*\\n?", | |
| "name": "meta.function.asp" | |
| }, | |
| { | |
| "begin": "('|(?i:Rem)\\s{1,})", | |
| "beginCaptures": [ | |
| { | |
| "name": "punctuation.definition.comment.asp" | |
| } | |
| ], | |
| "end": "(?=(\\n|%>))", | |
| "name": "comment.line.apostrophe.asp" | |
| }, | |
| { | |
| "match": "(?i:\\b(If|Then|Else|ElseIf|Else If|End If|While|Wend|For|To|Each|In|Step|Case|Select|End Select|Return|Continue|Do|Until|Loop|Next|With|End With|Exit Do|Exit For|Exit Function|Exit Property|Exit Sub|IIf)\\b)", | |
| "name": "keyword.control.asp" | |
| }, | |
| { | |
| "match": "(?i:\\b(Mod|And|Not|Is|Or|Xor|as)\\b)", | |
| "name": "keyword.operator.asp" | |
| }, | |
| { | |
| "captures": { | |
| "1": { | |
| "name": "storage.type.asp" | |
| }, | |
| "2": { | |
| "name": "variable.other.bfeac.asp" | |
| }, | |
| "3": { | |
| "name": "meta.separator.comma.asp" | |
| } | |
| }, | |
| "match": "(?i:(dim)\\s*(?:(\\b[a-zA-Z_x7f-xff][a-zA-Z0-9_x7f-xff]*?\\b)\\s*(,?)))", | |
| "name": "variable.other.dim.asp" | |
| }, | |
| { | |
| "match": "(?i:\\s*\\b(Call|Class|Const|Dim|Redim|Function|Sub|Private Sub|Public Sub|End sub|End Function|Set|Let|Get|New|Randomize|Option Explicit|On Error Resume Next|On Error GoTo|ByRef|ByVal|Public Function|Private Function|Preserve)\\b\\s*)", | |
| "name": "storage.type.asp" | |
| }, | |
| { | |
| "match": "(?i:\\b(Private|Public|Default)\\b)", | |
| "name": "storage.modifier.asp" | |
| }, | |
| { | |
| "match": "(?i:\\s*\\b(Empty|False|Nothing|Null|True)\\b)", | |
| "name": "constant.language.asp" | |
| }, | |
| { | |
| "begin": "\"", | |
| "beginCaptures": [ | |
| { | |
| "name": "punctuation.definition.string.begin.asp" | |
| } | |
| ], | |
| "end": "\"", | |
| "endCaptures": [ | |
| { | |
| "name": "punctuation.definition.string.end.asp" | |
| } | |
| ], | |
| "name": "string.quoted.double.asp", | |
| "patterns": [ | |
| { | |
| "match": "\"\"", | |
| "name": "constant.character.escape.apostrophe.asp" | |
| } | |
| ] | |
| }, | |
| { | |
| "captures": { | |
| "1": { | |
| "name": "punctuation.definition.variable.asp" | |
| } | |
| }, | |
| "match": "(\\$)[a-zA-Z_xf-xff][a-zA-Z0-9_xf-xff]*?\\b\\s*", | |
| "name": "variable.other.asp" | |
| }, | |
| { | |
| "match": "(?i:\\b(Application|ObjectContext|Request|Response|Server|Session)\\b)", | |
| "name": "support.class.asp" | |
| }, | |
| { | |
| "match": "(?i:\\b(Contents|StaticObjects|ClientCertificate|Cookies|Form|QueryString|ServerVariables)\\b)", | |
| "name": "support.class.collection.asp" | |
| }, | |
| { | |
| "match": "(?i:\\b(TotalBytes|Buffer|CacheControl|Charset|ContentType|Expires|ExpiresAbsolute|IsClientConnected|PICS|Status|ScriptTimeout|CodePage|LCID|SessionID|Timeout)\\b)", | |
| "name": "support.constant.asp" | |
| }, | |
| { | |
| "match": "(?i:\\b(Lock|Unlock|SetAbort|SetComplete|BinaryRead|AddHeader|AppendToLog|BinaryWrite|Clear|End|Flush|Redirect|Write|CreateObject|HTMLEncode|MapPath|URLEncode|Abandon|Convert|Regex)\\b)", | |
| "name": "support.function.asp" | |
| }, | |
| { | |
| "match": "(?i:\\b(Application_OnEnd|Application_OnStart|OnTransactionAbort|OnTransactionCommit|Session_OnEnd|Session_OnStart)\\b)", | |
| "name": "support.function.event.asp" | |
| }, | |
| { | |
| "match": "(?i:(?<=as )(\\b[a-zA-Z_x7f-xff][a-zA-Z0-9_x7f-xff]*?\\b))", | |
| "name": "support.type.vb.asp" | |
| }, | |
| { | |
| "match": "(?i:\\b(Array|Add|Asc|Atn|CBool|CByte|CCur|CDate|CDbl|Chr|CInt|CLng|Conversions|Cos|CreateObject|CSng|CStr|Date|DateAdd|DateDiff|DatePart|DateSerial|DateValue|Day|Derived|Math|Escape|Eval|Exists|Exp|Filter|FormatCurrency|FormatDateTime|FormatNumber|FormatPercent|GetLocale|GetObject|GetRef|Hex|Hour|InputBox|InStr|InStrRev|Int|Fix|IsArray|IsDate|IsEmpty|IsNull|IsNumeric|IsObject|Item|Items|Join|Keys|LBound|LCase|Left|Len|LoadPicture|Log|LTrim|RTrim|Trim|Maths|Mid|Minute|Month|MonthName|MsgBox|Now|Oct|Remove|RemoveAll|Replace|RGB|Right|Rnd|Round|ScriptEngine|ScriptEngineBuildVersion|ScriptEngineMajorVersion|ScriptEngineMinorVersion|Second|SetLocale|Sgn|Sin|Space|Split|Sqr|StrComp|String|StrReverse|Tan|Time|Timer|TimeSerial|TimeValue|TypeName|UBound|UCase|Unescape|VarType|Weekday|WeekdayName|Year)\\b)", | |
| "name": "support.function.vb.asp" | |
| }, | |
| { | |
| "match": "-?\\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\.?[0-9]*)|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)(L|l|UL|ul|u|U|F|f)?\\b", | |
| "name": "constant.numeric.asp" | |
| }, | |
| { | |
| "match": "(?i:\\s*\\b(vbtrue|vbfalse|vbcr|vbcrlf|vbformfeed|vblf|vbnewline|vbnullchar|vbnullstring|int32|vbtab|vbverticaltab|vbbinarycompare|vbtextcompare|vbsunday|vbmonday|vbtuesday|vbwednesday|vbthursday|vbfriday|vbsaturday|vbusesystemdayofweek|vbfirstjan1|vbfirstfourdays|vbfirstfullweek|vbgeneraldate|vblongdate|vbshortdate|vblongtime|vbshorttime|vbobjecterror|vbEmpty|vbNull|vbInteger|vbLong|vbSingle|vbDouble|vbCurrency|vbDate|vbString|vbObject|vbError|vbBoolean|vbVariant|vbDataObject|vbDecimal|vbByte|vbArray)\\b\\s*)", | |
| "name": "support.type.vb.asp" | |
| }, | |
| { | |
| "captures": { | |
| "1": { | |
| "name": "entity.name.function.asp" | |
| } | |
| }, | |
| "match": "(?i:(\\b[a-zA-Z_x7f-xff][a-zA-Z0-9_x7f-xff]*?\\b)(?=\\(\\)?))", | |
| "name": "support.function.asp" | |
| }, | |
| { | |
| "match": "(?i:((?<=(\\+|=|-|\\&|\\\\|/|<|>|\\(|,))\\s*\\b([a-zA-Z_xf-xff][a-zA-Z0-9_xf-xff]*?)\\b(?!(\\(|\\.))|\\b([a-zA-Z_xf-xff][a-zA-Z0-9_xf-xff]*?)\\b(?=\\s*(\\+|=|-|\\&|\\\\|/|<|>|\\(|\\)))))", | |
| "name": "variable.other.asp" | |
| }, | |
| { | |
| "match": "!|\\$|%|&|\\*|\\-\\-|\\-|\\+\\+|\\+|~|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\|\\||\\?\\:|\\*=|/=|%=|\\+=|\\-=|&=|\\^=|\\b(in|instanceof|new|delete|typeof|void)\\b", | |
| "name": "keyword.operator.js" | |
| } | |
| ], | |
| "repository": { | |
| "round-brackets": { | |
| "begin": "\\(", | |
| "beginCaptures": [ | |
| { | |
| "name": "punctuation.section.round-brackets.begin.asp" | |
| } | |
| ], | |
| "end": "\\)", | |
| "endCaptures": [ | |
| { | |
| "name": "punctuation.section.round-brackets.end.asp" | |
| } | |
| ], | |
| "name": "meta.round-brackets", | |
| "patterns": [ | |
| { | |
| "include": "source.vbs" | |
| } | |
| ] | |
| } | |
| }, | |
| "scopeName": "source.vbs", | |
| "uuid": "7F9C9343-D48E-4E7D-BFE8-F680714DCD3E" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment