UNPKG

tm-grammars

Version:
1,499 lines (1,498 loc) 38.4 kB
{ "displayName": "Nim", "fileTypes": [ "nim" ], "name": "nim", "patterns": [ { "begin": "[\\t ]*##\\[", "contentName": "comment.block.doc-comment.content.nim", "end": "]##", "name": "comment.block.doc-comment.nim", "patterns": [ { "include": "#multilinedoccomment", "name": "comment.block.doc-comment.nested.nim" } ] }, { "begin": "[\\t ]*#\\[", "contentName": "comment.block.content.nim", "end": "]#", "name": "comment.block.nim", "patterns": [ { "include": "#multilinecomment", "name": "comment.block.nested.nim" } ] }, { "begin": "(^[\\t ]+)?(?=##)", "beginCaptures": { "1": { "name": "punctuation.whitespace.comment.leading.nim" } }, "end": "(?!\\G)", "patterns": [ { "begin": "##", "beginCaptures": { "0": { "name": "punctuation.definition.comment.nim" } }, "end": "\\n", "name": "comment.line.number-sign.doc-comment.nim" } ] }, { "begin": "(^[\\t ]+)?(?=#[^\\[])", "beginCaptures": { "1": { "name": "punctuation.whitespace.comment.leading.nim" } }, "end": "(?!\\G)", "patterns": [ { "begin": "#", "beginCaptures": { "0": { "name": "punctuation.definition.comment.nim" } }, "end": "\\n", "name": "comment.line.number-sign.nim" } ] }, { "name": "meta.proc.nim", "patterns": [ { "begin": "\\b(proc|method|template|macro|iterator|converter|func)\\s+`?([^(*:`{\\s]*)`?(\\s*\\*)?\\s*(?=[\\n(:=\\[{])", "captures": { "1": { "name": "keyword.other" }, "2": { "name": "entity.name.function.nim" }, "3": { "name": "keyword.control.export" } }, "end": "\\)", "patterns": [ { "include": "source.nim" } ] } ] }, { "begin": "discard \"\"\"", "end": "\"\"\"(?!\")", "name": "comment.line.discarded.nim" }, { "include": "#float_literal" }, { "include": "#integer_literal" }, { "match": "(?<=`)[^ `]+(?=`)", "name": "entity.name.function.nim" }, { "captures": { "1": { "name": "keyword.control.export" } }, "match": "\\b\\s*(\\*)(?:\\s*(?=[,:])|\\s+(?==))" }, { "captures": { "1": { "name": "support.type.nim" }, "2": { "name": "keyword.control.export" } }, "match": "\\b([A-Z]\\w+)(\\*)" }, { "include": "#string_literal" }, { "match": "\\b(true|false|Inf|NegInf|NaN|nil)\\b", "name": "constant.language.nim" }, { "match": "\\b(block|break|case|continue|do|elif|else|end|except|finally|for|if|raise|return|try|when|while|yield)\\b", "name": "keyword.control.nim" }, { "match": "\\b((and|in|is|isnot|not|notin|or|xor))\\b", "name": "keyword.boolean.nim" }, { "match": "([-!$%\\&*+./:<-@\\\\^~])+", "name": "keyword.operator.nim" }, { "match": "\\b((addr|asm??|atomic|bind|cast|const|converter|concept|defer|discard|distinct|div|enum|export|from|import|include|let|mod|mixin|object|of|ptr|ref|shl|shr|static|type|using|var|tuple|iterator|macro|func|method|proc|template))\\b", "name": "keyword.other.nim" }, { "match": "\\b((generic|interface|lambda|out|shared))\\b", "name": "invalid.illegal.invalid-keyword.nim" }, { "match": "\\b(new|await|assert|echo|defined|declared|newException|countup|countdown|high|low)\\b", "name": "keyword.other.common.function.nim" }, { "match": "\\b(((u?int)(8|16|32|64)?)|float(32|64)?|bool|string|auto|cstring|char|byte|tobject|typedesc|stmt|expr|any|untyped|typed)\\b", "name": "storage.type.concrete.nim" }, { "match": "\\b(range|array|seq|set|pointer)\\b", "name": "storage.type.generic.nim" }, { "match": "\\b(openarray|varargs|void)\\b", "name": "storage.type.generic.nim" }, { "match": "\\b[A-Z][0-9A-Z_]+\\b", "name": "support.constant.nim" }, { "match": "\\b[A-Z]\\w+\\b", "name": "support.type.nim" }, { "match": "\\b\\w+\\b(?=(\\[([,0-9A-Z_a-z\\s])+])?\\()", "name": "support.function.any-method.nim" }, { "match": "(?!(openarray|varargs|void|range|array|seq|set|pointer|new|await|assert|echo|defined|declared|newException|countup|countdown|high|low|((u?int)(8|16|32|64)?)|float(32|64)?|bool|string|auto|cstring|char|byte|tobject|typedesc|stmt|expr|any|untyped|typed|addr|asm??|atomic|bind|cast|const|converter|concept|defer|discard|distinct|div|enum|export|from|import|include|let|mod|mixin|object|of|ptr|ref|shl|shr|static|type|using|var|tuple|iterator|macro|func|method|proc|template|and|in|is|isnot|not|notin|or|xor|proc|method|template|macro|iterator|converter|func|true|false|Inf|NegInf|NaN|nil|block|break|case|continue|do|elif|else|end|except|finally|for|if|raise|return|try|when|while|yield)\\b)\\w+\\s+(?!(and|in|is|isnot|not|notin|or|xor|[^\"'-+0-9A-Z_-z]+)\\b)(?=[\"'-+0-9A-Z_-z])", "name": "support.function.any-method.nim" }, { "begin": "(^\\s*)?(?=\\{\\.emit: ?\"\"\")", "beginCaptures": { "0": { "name": "punctuation.whitespace.embedded.leading.nim" } }, "end": "(?!\\G)(\\s*$\\n?)?", "endCaptures": { "0": { "name": "punctuation.whitespace.embedded.trailing.nim" } }, "patterns": [ { "begin": "\\{\\.(emit:) ?(\"\"\")", "captures": { "1": { "name": "keyword.other.nim" }, "2": { "name": "punctuation.section.embedded.begin.nim" } }, "contentName": "source.c", "end": "(\")\"\"(?!\")(\\.?})?", "endCaptures": { "0": { "name": "punctuation.section.embedded.end.nim" }, "1": { "name": "source.c" } }, "name": "meta.embedded.block.c", "patterns": [ { "begin": "`", "end": "`", "name": "keyword.operator.nim" }, { "include": "source.c" } ] } ] }, { "begin": "\\{\\.", "beginCaptures": { "0": { "name": "punctuation.pragma.start.nim" } }, "end": "\\.?}", "endCaptures": { "0": { "name": "punctuation.pragma.end.nim" } }, "patterns": [ { "begin": "\\b(\\p{alpha}\\w*)(?:\\s|\\s*:)", "beginCaptures": { "1": { "name": "meta.preprocessor.pragma.nim" } }, "end": "(?=\\.?}|,)", "patterns": [ { "include": "source.nim" } ] }, { "begin": "\\b(\\p{alpha}\\w*)\\(", "beginCaptures": { "1": { "name": "meta.preprocessor.pragma.nim" } }, "end": "\\)", "patterns": [ { "include": "source.nim" } ] }, { "captures": { "1": { "name": "meta.preprocessor.pragma.nim" } }, "match": "\\b(\\p{alpha}\\w*)(?=\\.?}|,)" }, { "begin": "\\b(\\p{alpha}\\w*)(\"\"\")", "beginCaptures": { "1": { "name": "meta.preprocessor.pragma.nim" }, "2": { "name": "punctuation.definition.string.begin.nim" } }, "end": "\"\"\"(?!\")", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.triple.raw.nim" }, { "begin": "\\b(\\p{alpha}\\w*)(\")", "beginCaptures": { "1": { "name": "meta.preprocessor.pragma.nim" }, "2": { "name": "punctuation.definition.string.begin.nim" } }, "end": "\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.double.raw.nim" }, { "begin": "\\b(hint\\[\\w+]):", "beginCaptures": { "1": { "name": "meta.preprocessor.pragma.nim" } }, "end": "(?=\\.?}|,)", "patterns": [ { "include": "source.nim" } ] }, { "match": ",", "name": "punctuation.separator.comma.nim" } ] }, { "begin": "(^\\s*)?(?=asm \"\"\")", "beginCaptures": { "0": { "name": "punctuation.whitespace.embedded.leading.nim" } }, "end": "(?!\\G)(\\s*$\\n?)?", "endCaptures": { "0": { "name": "punctuation.whitespace.embedded.trailing.nim" } }, "patterns": [ { "begin": "(asm) (\"\"\")", "captures": { "1": { "name": "keyword.other.nim" }, "2": { "name": "punctuation.section.embedded.begin.nim" } }, "contentName": "source.asm", "end": "(\")\"\"(?!\")", "endCaptures": { "0": { "name": "punctuation.section.embedded.end.nim" }, "1": { "name": "source.asm" } }, "name": "meta.embedded.block.asm", "patterns": [ { "begin": "`", "end": "`", "name": "keyword.operator.nim" }, { "include": "source.asm" } ] } ] }, { "captures": { "1": { "name": "storage.type.function.nim" }, "2": { "name": "keyword.operator.nim" } }, "match": "(tmpl(i)?)(?=( (html|xml|js|css|glsl|md))?\"\"\")" }, { "begin": "(^\\s*)?(?=html\"\"\")", "beginCaptures": { "0": { "name": "punctuation.whitespace.embedded.leading.nim" } }, "end": "(?!\\G)(\\s*$\\n?)?", "endCaptures": { "0": { "name": "punctuation.whitespace.embedded.trailing.nim" } }, "patterns": [ { "begin": "(html)(\"\"\")", "captures": { "1": { "name": "keyword.other.nim" }, "2": { "name": "punctuation.section.embedded.begin.nim" } }, "contentName": "text.html", "end": "(\")\"\"(?!\")", "endCaptures": { "0": { "name": "punctuation.section.embedded.end.nim" }, "1": { "name": "text.html" } }, "name": "meta.embedded.block.html", "patterns": [ { "begin": "(?<!\\$)(\\$)\\(", "captures": { "1": { "name": "keyword.operator.nim" } }, "end": "\\)", "patterns": [ { "include": "source.nim" } ] }, { "begin": "(?<!\\$)(\\$)\\{", "captures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "keyword.operator.nim" } }, "end": "}", "patterns": [ { "include": "source.nim" } ] }, { "begin": "(?<!\\$)(\\$)(for|while|case|of|when|if|else|elif)( )", "captures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "keyword.operator.nim" } }, "end": "([\\n{])", "endCaptures": { "1": { "name": "plain" } }, "patterns": [ { "include": "source.nim" } ] }, { "match": "(?<!\\$)(\\$\\w+)", "name": "keyword.operator.nim" }, { "include": "text.html.basic" } ] } ] }, { "begin": "(^\\s*)?(?=xml\"\"\")", "beginCaptures": { "0": { "name": "punctuation.whitespace.embedded.leading.nim" } }, "end": "(?!\\G)(\\s*$\\n?)?", "endCaptures": { "0": { "name": "punctuation.whitespace.embedded.trailing.nim" } }, "patterns": [ { "begin": "(xml)(\"\"\")", "captures": { "1": { "name": "keyword.other.nim" }, "2": { "name": "punctuation.section.embedded.begin.nim" } }, "contentName": "text.xml", "end": "(\")\"\"(?!\")", "endCaptures": { "0": { "name": "punctuation.section.embedded.end.nim" }, "1": { "name": "text.xml" } }, "name": "meta.embedded.block.xml", "patterns": [ { "begin": "(?<!\\$)(\\$)\\(", "captures": { "1": { "name": "keyword.operator.nim" } }, "end": "\\)", "patterns": [ { "include": "source.nim" } ] }, { "begin": "(?<!\\$)(\\$)\\{", "captures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "keyword.operator.nim" } }, "end": "}", "patterns": [ { "include": "source.nim" } ] }, { "begin": "(?<!\\$)(\\$)(for|while|case|of|when|if|else|elif)( )", "captures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "keyword.operator.nim" } }, "end": "([\\n{])", "endCaptures": { "1": { "name": "plain" } }, "patterns": [ { "include": "source.nim" } ] }, { "match": "(?<!\\$)(\\$\\w+)", "name": "keyword.operator.nim" }, { "include": "text.xml" } ] } ] }, { "begin": "(^\\s*)?(?=js\"\"\")", "beginCaptures": { "0": { "name": "punctuation.whitespace.embedded.leading.nim" } }, "end": "(?!\\G)(\\s*$\\n?)?", "endCaptures": { "0": { "name": "punctuation.whitespace.embedded.trailing.nim" } }, "patterns": [ { "begin": "(js)(\"\"\")", "captures": { "1": { "name": "keyword.other.nim" }, "2": { "name": "punctuation.section.embedded.begin.nim" } }, "contentName": "source.js", "end": "(\")\"\"(?!\")", "endCaptures": { "0": { "name": "punctuation.section.embedded.end.nim" }, "1": { "name": "source.js" } }, "name": "meta.embedded.block.js", "patterns": [ { "begin": "(?<!\\$)(\\$)\\(", "captures": { "1": { "name": "keyword.operator.nim" } }, "end": "\\)", "patterns": [ { "include": "source.nim" } ] }, { "begin": "(?<!\\$)(\\$)\\{", "captures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "keyword.operator.nim" } }, "end": "}", "patterns": [ { "include": "source.nim" } ] }, { "begin": "(?<!\\$)(\\$)(for|while|case|of|when|if|else|elif)( )", "captures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "keyword.operator.nim" } }, "end": "([\\n{])", "endCaptures": { "1": { "name": "plain" } }, "patterns": [ { "include": "source.nim" } ] }, { "match": "(?<!\\$)(\\$\\w+)", "name": "keyword.operator.nim" }, { "include": "source.js" } ] } ] }, { "begin": "(^\\s*)?(?=css\"\"\")", "beginCaptures": { "0": { "name": "punctuation.whitespace.embedded.leading.nim" } }, "end": "(?!\\G)(\\s*$\\n?)?", "endCaptures": { "0": { "name": "punctuation.whitespace.embedded.trailing.nim" } }, "patterns": [ { "begin": "(css)(\"\"\")", "captures": { "1": { "name": "keyword.other.nim" }, "2": { "name": "punctuation.section.embedded.begin.nim" } }, "contentName": "source.css", "end": "(\")\"\"(?!\")", "endCaptures": { "0": { "name": "punctuation.section.embedded.end.nim" }, "1": { "name": "source.css" } }, "name": "meta.embedded.block.css", "patterns": [ { "begin": "(?<!\\$)(\\$)\\(", "captures": { "1": { "name": "keyword.operator.nim" } }, "end": "\\)", "patterns": [ { "include": "source.nim" } ] }, { "begin": "(?<!\\$)(\\$)\\{", "captures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "keyword.operator.nim" } }, "end": "}", "patterns": [ { "include": "source.nim" } ] }, { "begin": "(?<!\\$)(\\$)(for|while|case|of|when|if|else|elif)( )", "captures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "keyword.operator.nim" } }, "end": "([\\n{])", "endCaptures": { "1": { "name": "plain" } }, "patterns": [ { "include": "source.nim" } ] }, { "match": "(?<!\\$)(\\$\\w+)", "name": "keyword.operator.nim" }, { "include": "source.css" } ] } ] }, { "begin": "(^\\s*)?(?=glsl\"\"\")", "beginCaptures": { "0": { "name": "punctuation.whitespace.embedded.leading.nim" } }, "end": "(?!\\G)(\\s*$\\n?)?", "endCaptures": { "0": { "name": "punctuation.whitespace.embedded.trailing.nim" } }, "patterns": [ { "begin": "(glsl)(\"\"\")", "captures": { "1": { "name": "keyword.other.nim" }, "2": { "name": "punctuation.section.embedded.begin.nim" } }, "contentName": "source.glsl", "end": "(\")\"\"(?!\")", "endCaptures": { "0": { "name": "punctuation.section.embedded.end.nim" }, "1": { "name": "source.glsl" } }, "name": "meta.embedded.block.glsl", "patterns": [ { "begin": "(?<!\\$)(\\$)\\(", "captures": { "1": { "name": "keyword.operator.nim" } }, "end": "\\)", "patterns": [ { "include": "source.nim" } ] }, { "begin": "(?<!\\$)(\\$)\\{", "captures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "keyword.operator.nim" } }, "end": "}", "patterns": [ { "include": "source.nim" } ] }, { "begin": "(?<!\\$)(\\$)(for|while|case|of|when|if|else|elif)( )", "captures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "keyword.operator.nim" } }, "end": "([\\n{])", "endCaptures": { "1": { "name": "plain" } }, "patterns": [ { "include": "source.nim" } ] }, { "match": "(?<!\\$)(\\$\\w+)", "name": "keyword.operator.nim" }, { "include": "source.glsl" } ] } ] }, { "begin": "(^\\s*)?(?=md\"\"\")", "beginCaptures": { "0": { "name": "punctuation.whitespace.embedded.leading.nim" } }, "end": "(?!\\G)(\\s*$\\n?)?", "endCaptures": { "0": { "name": "punctuation.whitespace.embedded.trailing.nim" } }, "patterns": [ { "begin": "(md)(\"\"\")", "captures": { "1": { "name": "keyword.other.nim" }, "2": { "name": "punctuation.section.embedded.begin.nim" } }, "contentName": "text.html.markdown", "end": "(\")\"\"(?!\")", "endCaptures": { "0": { "name": "punctuation.section.embedded.end.nim" }, "1": { "name": "text.html.markdown" } }, "name": "meta.embedded.block.html.markdown", "patterns": [ { "begin": "(?<!\\$)(\\$)\\(", "captures": { "1": { "name": "keyword.operator.nim" } }, "end": "\\)", "patterns": [ { "include": "source.nim" } ] }, { "begin": "(?<!\\$)(\\$)\\{", "captures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "keyword.operator.nim" } }, "end": "}", "patterns": [ { "include": "source.nim" } ] }, { "begin": "(?<!\\$)(\\$)(for|while|case|of|when|if|else|elif)( )", "captures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "keyword.operator.nim" } }, "end": "([\\n{])", "endCaptures": { "1": { "name": "plain" } }, "patterns": [ { "include": "source.nim" } ] }, { "match": "(?<!\\$)(\\$\\w+)", "name": "keyword.operator.nim" }, { "include": "text.html.markdown" } ] } ] } ], "repository": { "char_escapes": { "patterns": [ { "match": "\\\\[CRcr]", "name": "constant.character.escape.carriagereturn.nim" }, { "match": "\\\\[LNln]", "name": "constant.character.escape.linefeed.nim" }, { "match": "\\\\[Ff]", "name": "constant.character.escape.formfeed.nim" }, { "match": "\\\\[Tt]", "name": "constant.character.escape.tabulator.nim" }, { "match": "\\\\[Vv]", "name": "constant.character.escape.verticaltabulator.nim" }, { "match": "\\\\\"", "name": "constant.character.escape.double-quote.nim" }, { "match": "\\\\'", "name": "constant.character.escape.single-quote.nim" }, { "match": "\\\\[0-9]+", "name": "constant.character.escape.chardecimalvalue.nim" }, { "match": "\\\\[Aa]", "name": "constant.character.escape.alert.nim" }, { "match": "\\\\[Bb]", "name": "constant.character.escape.backspace.nim" }, { "match": "\\\\[Ee]", "name": "constant.character.escape.escape.nim" }, { "match": "\\\\[Xx]\\h\\h", "name": "constant.character.escape.hex.nim" }, { "match": "\\\\\\\\", "name": "constant.character.escape.backslash.nim" } ] }, "extended_string_quoted_double_raw": { "begin": "\\b(\\w+)(\")", "beginCaptures": { "1": { "name": "support.function.any-method.nim" }, "2": { "name": "punctuation.definition.string.begin.nim" } }, "end": "\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.double.raw.nim", "patterns": [ { "include": "#raw_string_escapes" } ] }, "extended_string_quoted_triple_raw": { "begin": "\\b(\\w+)(\"\"\")", "beginCaptures": { "1": { "name": "support.function.any-method.nim" }, "2": { "name": "punctuation.definition.string.begin.nim" } }, "end": "\"\"\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.triple.raw.nim" }, "float_literal": { "patterns": [ { "match": "\\b\\d[_\\d]*((\\.\\d[_\\d]*([Ee][-+]?\\d[_\\d]*)?)|([Ee][-+]?\\d[_\\d]*))('([Ff](32|64|128)|[DFdf]))?", "name": "constant.numeric.float.decimal.nim" }, { "match": "\\b0[Xx]\\h[_\\h]*'([Ff](32|64|128)|[DFdf])", "name": "constant.numeric.float.hexadecimal.nim" }, { "match": "\\b0o[0-7][0-7_]*'([Ff](32|64|128)|[DFdf])", "name": "constant.numeric.float.octal.nim" }, { "match": "\\b0([Bb])[01][01_]*'([Ff](32|64|128)|[DFdf])", "name": "constant.numeric.float.binary.nim" }, { "match": "\\b(\\d[_\\d]*)'([Ff](32|64|128)|[DFdf])", "name": "constant.numeric.float.decimal.nim" } ] }, "fmt_interpolation": { "begin": "\\{", "beginCaptures": { "0": { "name": "punctuation.definition.template-expression.begin.nim" } }, "end": "}", "endCaptures": { "0": { "name": "punctuation.definition.template-expression.end.nim" } }, "name": "meta.template.expression.nim", "patterns": [ { "begin": ":", "end": "(?=})", "name": "meta.template.format-specifier.nim" }, { "include": "source.nim" } ] }, "fmt_string": { "begin": "\\b(fmt)(\")", "beginCaptures": { "1": { "name": "support.function.any-method.nim" }, "2": { "name": "punctuation.definition.string.begin.nim" } }, "end": "\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.double.raw.nim", "patterns": [ { "match": "(?<!\")\"(?!\")", "name": "invalid.illegal.nim" }, { "include": "#raw_string_escapes" }, { "include": "#fmt_interpolation" } ] }, "fmt_string_call": { "begin": "(fmt)\\((?=\")", "beginCaptures": { "1": { "name": "support.function.any-method.nim" } }, "end": "\\)", "patterns": [ { "begin": "\"", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.nim" } }, "end": "\"(?=\\))", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.double.nim", "patterns": [ { "match": "\"", "name": "invalid.illegal.nim" }, { "include": "#string_escapes" }, { "include": "#fmt_interpolation" } ] } ] }, "fmt_string_operator": { "begin": "(&)(\")", "beginCaptures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "punctuation.definition.string.begin.nim" } }, "end": "\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.double.nim", "patterns": [ { "match": "\"", "name": "invalid.illegal.nim" }, { "include": "#string_escapes" }, { "include": "#fmt_interpolation" } ] }, "fmt_string_triple": { "begin": "\\b(fmt)(\"\"\")", "beginCaptures": { "1": { "name": "support.function.any-method.nim" }, "2": { "name": "punctuation.definition.string.begin.nim" } }, "end": "\"\"\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.triple.raw.nim", "patterns": [ { "include": "#fmt_interpolation" } ] }, "fmt_string_triple_operator": { "begin": "(&)(\"\"\")", "beginCaptures": { "1": { "name": "keyword.operator.nim" }, "2": { "name": "punctuation.definition.string.begin.nim" } }, "end": "\"\"\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.triple.raw.nim", "patterns": [ { "include": "#fmt_interpolation" } ] }, "integer_literal": { "patterns": [ { "match": "\\b(0[Xx]\\h[_\\h]*)('(([IUiu](8|16|32|64))|[Uu]))?", "name": "constant.numeric.integer.hexadecimal.nim" }, { "match": "\\b(0o[0-7][0-7_]*)('(([IUiu](8|16|32|64))|[Uu]))?", "name": "constant.numeric.integer.octal.nim" }, { "match": "\\b(0([Bb])[01][01_]*)('(([IUiu](8|16|32|64))|[Uu]))?", "name": "constant.numeric.integer.binary.nim" }, { "match": "\\b(\\d[_\\d]*)('(([IUiu](8|16|32|64))|[Uu]))?", "name": "constant.numeric.integer.decimal.nim" } ] }, "multilinecomment": { "begin": "#\\[", "end": "]#", "patterns": [ { "include": "#multilinecomment" } ] }, "multilinedoccomment": { "begin": "##\\[", "end": "]##", "patterns": [ { "include": "#multilinedoccomment" } ] }, "raw_string_escapes": { "captures": { "1": { "name": "constant.character.escape.double-quote.nim" } }, "match": "[^\"](\"\")" }, "string_escapes": { "patterns": [ { "match": "\\\\[Pp]", "name": "constant.character.escape.newline.nim" }, { "match": "\\\\[Uu]\\h\\h\\h\\h", "name": "constant.character.escape.hex.nim" }, { "match": "\\\\[Uu]\\{\\h+}", "name": "constant.character.escape.hex.nim" }, { "include": "#char_escapes" } ] }, "string_literal": { "patterns": [ { "include": "#fmt_string_triple" }, { "include": "#fmt_string_triple_operator" }, { "include": "#extended_string_quoted_triple_raw" }, { "include": "#string_quoted_triple_raw" }, { "include": "#fmt_string_operator" }, { "include": "#fmt_string" }, { "include": "#fmt_string_call" }, { "include": "#string_quoted_double_raw" }, { "include": "#extended_string_quoted_double_raw" }, { "include": "#string_quoted_single" }, { "include": "#string_quoted_triple" }, { "include": "#string_quoted_double" } ] }, "string_quoted_double": { "begin": "\"", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.nim" } }, "end": "\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.double.nim", "patterns": [ { "include": "#string_escapes" } ] }, "string_quoted_double_raw": { "begin": "\\br\"", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.nim" } }, "end": "\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.double.raw.nim", "patterns": [ { "include": "#raw_string_escapes" } ] }, "string_quoted_single": { "begin": "'", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.nim" } }, "end": "'", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.single.nim", "patterns": [ { "include": "#char_escapes" }, { "match": "([^']{2,}?)", "name": "invalid.illegal.character.nim" } ] }, "string_quoted_triple": { "begin": "\"\"\"", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.nim" } }, "end": "\"\"\"(?!\")", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.triple.nim" }, "string_quoted_triple_raw": { "begin": "r\"\"\"", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.nim" } }, "end": "\"\"\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.nim" } }, "name": "string.quoted.triple.raw.nim" } }, "scopeName": "source.nim" }