Get latest shellscript grammar and update tests

This commit is contained in:
Alex Ross
2023-02-06 12:11:53 +01:00
parent c3a17a3ebf
commit 7b369be6af
7 changed files with 3100 additions and 1356 deletions

View File

@@ -4,14 +4,13 @@
"component": {
"type": "git",
"git": {
"name": "atom/language-shellscript",
"repositoryUrl": "https://github.com/atom/language-shellscript",
"commitHash": "4f8d7bb5cc4d1643674551683df10fe552dd5a6f"
"name": "jeff-hykin/better-shell-syntax",
"repositoryUrl": "https://github.com/jeff-hykin/better-shell-syntax",
"commitHash": "4ea3d7e5f6fb493395e417a26ba5483475e88af4"
}
},
"license": "MIT",
"description": "The file syntaxes/shell-unix-bash.tmLanguage.json was derived from the Atom package https://github.com/atom/language-shellscript which was originally converted from the TextMate bundle https://github.com/textmate/shellscript.tmbundle.",
"version": "0.28.2"
"version": "1.3.0"
}
],
"version": 1

View File

@@ -9,7 +9,7 @@
"vscode": "*"
},
"scripts": {
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin atom/language-shellscript grammars/shell-unix-bash.cson ./syntaxes/shell-unix-bash.tmLanguage.json"
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin jeff-hykin/better-shell-syntax autogenerated/shell.tmLanguage.json ./syntaxes/shell-unix-bash.tmLanguage.json"
},
"contributes": {
"languages": [

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
[
{
"c": "#!",
"t": "source.shell comment.line.number-sign.shebang.shell punctuation.definition.comment.shebang.shell",
"t": "source.shell comment.line.number-sign.shell meta.shebang.shell punctuation.definition.comment.shebang.shell",
"r": {
"dark_plus": "comment: #6A9955",
"light_plus": "comment: #008000",
@@ -15,7 +15,7 @@
},
{
"c": "/usr/bin/env bash",
"t": "source.shell comment.line.number-sign.shebang.shell",
"t": "source.shell comment.line.number-sign.shell meta.shebang.shell",
"r": {
"dark_plus": "comment: #6A9955",
"light_plus": "comment: #008000",
@@ -29,7 +29,7 @@
},
{
"c": "declare",
"t": "source.shell storage.modifier.shell",
"t": "source.shell meta.statement.shell meta.command.shell meta.command_name.shell storage.modifier.declare.shell",
"r": {
"dark_plus": "storage.modifier: #569CD6",
"light_plus": "storage.modifier: #0000FF",
@@ -42,8 +42,8 @@
}
},
{
"c": " -A juices=",
"t": "source.shell",
"c": " ",
"t": "source.shell meta.statement.shell meta.command.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -55,9 +55,65 @@
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": "-",
"t": "source.shell meta.statement.shell meta.command.shell string.unquoted.argument.shell constant.other.option.dash.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "A",
"t": "source.shell meta.statement.shell meta.command.shell string.unquoted.argument constant.other.option",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": " ",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": "juices=",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.unquoted.argument.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "(",
"t": "source.shell meta.scope.subshell.shell punctuation.definition.subshell.shell",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -71,7 +127,7 @@
},
{
"c": " ",
"t": "source.shell meta.scope.subshell.shell",
"t": "source.shell meta.statement.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -85,7 +141,7 @@
},
{
"c": "[",
"t": "source.shell meta.scope.subshell.shell meta.scope.logical-expression.shell punctuation.definition.logical-expression.shell",
"t": "source.shell meta.statement.shell meta.scope.logical-expression.shell punctuation.definition.logical-expression.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -99,7 +155,7 @@
},
{
"c": "'",
"t": "source.shell meta.scope.subshell.shell meta.scope.logical-expression.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"t": "source.shell meta.statement.shell meta.scope.logical-expression.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -113,7 +169,7 @@
},
{
"c": "apple",
"t": "source.shell meta.scope.subshell.shell meta.scope.logical-expression.shell string.quoted.single.shell",
"t": "source.shell meta.statement.shell meta.scope.logical-expression.shell string.quoted.single.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -127,7 +183,7 @@
},
{
"c": "'",
"t": "source.shell meta.scope.subshell.shell meta.scope.logical-expression.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"t": "source.shell meta.statement.shell meta.scope.logical-expression.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -141,7 +197,7 @@
},
{
"c": "]",
"t": "source.shell meta.scope.subshell.shell meta.scope.logical-expression.shell punctuation.definition.logical-expression.shell",
"t": "source.shell meta.statement.shell meta.scope.logical-expression.shell punctuation.definition.logical-expression.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -155,21 +211,21 @@
},
{
"c": "=",
"t": "source.shell meta.scope.subshell.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell keyword.operator.assignment.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
"dark_plus": "keyword.operator: #D4D4D4",
"light_plus": "keyword.operator: #000000",
"dark_vs": "keyword.operator: #D4D4D4",
"light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4",
"dark_plus_experimental": "keyword.operator: #D4D4D4",
"hc_light": "keyword.operator: #000000",
"light_plus_experimental": "keyword.operator: #000000"
}
},
{
"c": "'",
"t": "source.shell meta.scope.subshell.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -183,7 +239,7 @@
},
{
"c": "Apple Juice",
"t": "source.shell meta.scope.subshell.shell string.quoted.single.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell string.quoted.single.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -197,7 +253,7 @@
},
{
"c": "'",
"t": "source.shell meta.scope.subshell.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -211,7 +267,7 @@
},
{
"c": " ",
"t": "source.shell meta.scope.subshell.shell",
"t": "source.shell meta.statement.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -225,7 +281,7 @@
},
{
"c": "[",
"t": "source.shell meta.scope.subshell.shell meta.scope.logical-expression.shell punctuation.definition.logical-expression.shell",
"t": "source.shell meta.statement.shell meta.scope.logical-expression.shell punctuation.definition.logical-expression.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -239,7 +295,7 @@
},
{
"c": "'",
"t": "source.shell meta.scope.subshell.shell meta.scope.logical-expression.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"t": "source.shell meta.statement.shell meta.scope.logical-expression.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -253,7 +309,7 @@
},
{
"c": "orange",
"t": "source.shell meta.scope.subshell.shell meta.scope.logical-expression.shell string.quoted.single.shell",
"t": "source.shell meta.statement.shell meta.scope.logical-expression.shell string.quoted.single.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -267,7 +323,7 @@
},
{
"c": "'",
"t": "source.shell meta.scope.subshell.shell meta.scope.logical-expression.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"t": "source.shell meta.statement.shell meta.scope.logical-expression.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -281,7 +337,7 @@
},
{
"c": "]",
"t": "source.shell meta.scope.subshell.shell meta.scope.logical-expression.shell punctuation.definition.logical-expression.shell",
"t": "source.shell meta.statement.shell meta.scope.logical-expression.shell punctuation.definition.logical-expression.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -295,21 +351,21 @@
},
{
"c": "=",
"t": "source.shell meta.scope.subshell.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell keyword.operator.assignment.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
"dark_plus": "keyword.operator: #D4D4D4",
"light_plus": "keyword.operator: #000000",
"dark_vs": "keyword.operator: #D4D4D4",
"light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4",
"dark_plus_experimental": "keyword.operator: #D4D4D4",
"hc_light": "keyword.operator: #000000",
"light_plus_experimental": "keyword.operator: #000000"
}
},
{
"c": "'",
"t": "source.shell meta.scope.subshell.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -323,7 +379,7 @@
},
{
"c": "Orange Juice",
"t": "source.shell meta.scope.subshell.shell string.quoted.single.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell string.quoted.single.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -337,7 +393,7 @@
},
{
"c": "'",
"t": "source.shell meta.scope.subshell.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -351,7 +407,7 @@
},
{
"c": ")",
"t": "source.shell meta.scope.subshell.shell punctuation.definition.subshell.shell",
"t": "source.shell meta.statement.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -393,7 +449,7 @@
},
{
"c": "echo",
"t": "source.shell support.function.builtin.shell",
"t": "source.shell meta.statement.shell meta.command.shell entity.name.command.shell support.function.builtin.shell",
"r": {
"dark_plus": "support.function: #DCDCAA",
"light_plus": "support.function: #795E26",
@@ -407,7 +463,7 @@
},
{
"c": " ",
"t": "source.shell",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -421,7 +477,7 @@
},
{
"c": "\"",
"t": "source.shell string.quoted.double.shell punctuation.definition.string.begin.shell",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.definition.string.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -434,92 +490,106 @@
}
},
{
"c": "${",
"t": "source.shell string.quoted.double.shell variable.other.bracket.shell punctuation.definition.variable.shell",
"c": "$",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.definition.variable.shell punctuation.section.bracket.curly.variable.begin.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "{",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.section.bracket.curly.variable.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "juices",
"t": "source.shell string.quoted.double.shell variable.other.bracket.shell",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "[",
"t": "source.shell string.quoted.double.shell variable.other.bracket.shell punctuation.section.array.shell",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.section.array.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "'apple'",
"t": "source.shell string.quoted.double.shell variable.other.bracket.shell",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "]",
"t": "source.shell string.quoted.double.shell variable.other.bracket.shell punctuation.section.array.shell",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.section.array.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "}",
"t": "source.shell string.quoted.double.shell variable.other.bracket.shell punctuation.definition.variable.shell",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.section.bracket.curly.variable.end.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "\"",
"t": "source.shell string.quoted.double.shell punctuation.definition.string.end.shell",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.definition.string.end.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",

View File

@@ -1,21 +1,21 @@
[
{
"c": "alias",
"t": "source.shell support.function.builtin.shell",
"t": "source.shell meta.expression.assignment.shell storage.type.alias.shell",
"r": {
"dark_plus": "support.function: #DCDCAA",
"light_plus": "support.function: #795E26",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "support.function: #DCDCAA",
"dark_plus_experimental": "support.function: #DCDCAA",
"hc_light": "support.function: #5E2CBC",
"light_plus_experimental": "support.function: #795E26"
"dark_plus": "storage.type: #569CD6",
"light_plus": "storage.type: #0000FF",
"dark_vs": "storage.type: #569CD6",
"light_vs": "storage.type: #0000FF",
"hc_black": "storage.type: #569CD6",
"dark_plus_experimental": "storage.type: #569CD6",
"hc_light": "storage.type: #0F4A85",
"light_plus_experimental": "storage.type: #0000FF"
}
},
{
"c": " brew_list=",
"t": "source.shell",
"c": " ",
"t": "source.shell meta.expression.assignment.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -27,9 +27,37 @@
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": "brew_list",
"t": "source.shell meta.expression.assignment.shell variable.other.assignment.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
}
},
{
"c": "=",
"t": "source.shell meta.expression.assignment.shell keyword.operator.assignment.shell",
"r": {
"dark_plus": "keyword.operator: #D4D4D4",
"light_plus": "keyword.operator: #000000",
"dark_vs": "keyword.operator: #D4D4D4",
"light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4",
"dark_plus_experimental": "keyword.operator: #D4D4D4",
"hc_light": "keyword.operator: #000000",
"light_plus_experimental": "keyword.operator: #000000"
}
},
{
"c": "\"",
"t": "source.shell string.quoted.double.shell punctuation.definition.string.begin.shell",
"t": "source.shell meta.expression.assignment.shell string.quoted.double.shell punctuation.definition.string.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -43,7 +71,7 @@
},
{
"c": "brew leaves",
"t": "source.shell string.quoted.double.shell",
"t": "source.shell meta.expression.assignment.shell string.quoted.double.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -57,7 +85,7 @@
},
{
"c": "\"",
"t": "source.shell string.quoted.double.shell punctuation.definition.string.end.shell",
"t": "source.shell meta.expression.assignment.shell string.quoted.double.shell punctuation.definition.string.end.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -71,7 +99,7 @@
},
{
"c": "alias",
"t": "source.shell support.function.builtin.shell",
"t": "source.shell meta.statement.shell meta.command.shell entity.name.command.shell support.function.builtin.shell",
"r": {
"dark_plus": "support.function: #DCDCAA",
"light_plus": "support.function: #795E26",
@@ -84,8 +112,8 @@
}
},
{
"c": " brew-list=",
"t": "source.shell",
"c": " ",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -97,9 +125,23 @@
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": "brew-list=",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.unquoted.argument.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "\"",
"t": "source.shell string.quoted.double.shell punctuation.definition.string.begin.shell",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.definition.string.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -113,7 +155,7 @@
},
{
"c": "brew leaves",
"t": "source.shell string.quoted.double.shell",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -127,7 +169,7 @@
},
{
"c": "\"",
"t": "source.shell string.quoted.double.shell punctuation.definition.string.end.shell",
"t": "source.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.definition.string.end.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",

View File

@@ -1,7 +1,7 @@
[
{
"c": "#!",
"t": "source.shell comment.line.number-sign.shebang.shell punctuation.definition.comment.shebang.shell",
"t": "source.shell comment.line.number-sign.shell meta.shebang.shell punctuation.definition.comment.shebang.shell",
"r": {
"dark_plus": "comment: #6A9955",
"light_plus": "comment: #008000",
@@ -15,7 +15,7 @@
},
{
"c": "/usr/bin/env bash",
"t": "source.shell comment.line.number-sign.shebang.shell",
"t": "source.shell comment.line.number-sign.shell meta.shebang.shell",
"r": {
"dark_plus": "comment: #6A9955",
"light_plus": "comment: #008000",
@@ -28,22 +28,36 @@
}
},
{
"c": "cmd=",
"t": "source.shell",
"c": "cmd",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell variable.other.assignment.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
}
},
{
"c": "=",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell keyword.operator.assignment.shell",
"r": {
"dark_plus": "keyword.operator: #D4D4D4",
"light_plus": "keyword.operator: #000000",
"dark_vs": "keyword.operator: #D4D4D4",
"light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4",
"dark_plus_experimental": "keyword.operator: #D4D4D4",
"hc_light": "keyword.operator: #000000",
"light_plus_experimental": "keyword.operator: #000000"
}
},
{
"c": "(",
"t": "source.shell meta.scope.subshell.shell punctuation.definition.subshell.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell punctuation.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -57,7 +71,7 @@
},
{
"c": " ",
"t": "source.shell meta.scope.subshell.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -71,7 +85,7 @@
},
{
"c": "'",
"t": "source.shell meta.scope.subshell.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -85,7 +99,7 @@
},
{
"c": "ls",
"t": "source.shell meta.scope.subshell.shell string.quoted.single.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell string.quoted.single.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -99,7 +113,7 @@
},
{
"c": "'",
"t": "source.shell meta.scope.subshell.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -113,7 +127,7 @@
},
{
"c": " ",
"t": "source.shell meta.scope.subshell.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -127,7 +141,7 @@
},
{
"c": "'",
"t": "source.shell meta.scope.subshell.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -141,7 +155,7 @@
},
{
"c": "-la",
"t": "source.shell meta.scope.subshell.shell string.quoted.single.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell string.quoted.single.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -155,7 +169,7 @@
},
{
"c": "'",
"t": "source.shell meta.scope.subshell.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -169,7 +183,7 @@
},
{
"c": " ",
"t": "source.shell meta.scope.subshell.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -183,7 +197,7 @@
},
{
"c": ")",
"t": "source.shell meta.scope.subshell.shell punctuation.definition.subshell.shell",
"t": "source.shell meta.statement.shell meta.expression.assignment.shell punctuation.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -225,49 +239,63 @@
},
{
"c": "((",
"t": "source.shell meta.scope.if-block.shell string.other.math.shell punctuation.definition.string.begin.shell",
"t": "source.shell meta.scope.if-block.shell meta.arithmetic.shell punctuation.section.arithmetic.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": " ",
"t": "source.shell meta.scope.if-block.shell string.other.math.shell",
"t": "source.shell meta.scope.if-block.shell meta.arithmetic.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": "${",
"t": "source.shell meta.scope.if-block.shell string.other.math.shell variable.other.bracket.shell punctuation.definition.variable.shell",
"c": "$",
"t": "source.shell meta.scope.if-block.shell meta.arithmetic.shell punctuation.definition.variable.shell punctuation.section.bracket.curly.variable.begin.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": "{",
"t": "source.shell meta.scope.if-block.shell meta.arithmetic.shell punctuation.section.bracket.curly.variable.begin.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": "#",
"t": "source.shell meta.scope.if-block.shell string.other.math.shell variable.other.bracket.shell keyword.operator.expansion.shell",
"t": "source.shell meta.scope.if-block.shell meta.arithmetic.shell keyword.operator.expansion.shell",
"r": {
"dark_plus": "keyword.operator: #D4D4D4",
"light_plus": "keyword.operator: #000000",
@@ -281,114 +309,114 @@
},
{
"c": "cmd",
"t": "source.shell meta.scope.if-block.shell string.other.math.shell variable.other.bracket.shell",
"t": "source.shell meta.scope.if-block.shell meta.arithmetic.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": "[",
"t": "source.shell meta.scope.if-block.shell string.other.math.shell variable.other.bracket.shell punctuation.section.array.shell",
"t": "source.shell meta.scope.if-block.shell meta.arithmetic.shell punctuation.section.array.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": "@",
"t": "source.shell meta.scope.if-block.shell string.other.math.shell variable.other.bracket.shell",
"t": "source.shell meta.scope.if-block.shell meta.arithmetic.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": "]",
"t": "source.shell meta.scope.if-block.shell string.other.math.shell variable.other.bracket.shell punctuation.section.array.shell",
"t": "source.shell meta.scope.if-block.shell meta.arithmetic.shell punctuation.section.array.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": "}",
"t": "source.shell meta.scope.if-block.shell string.other.math.shell variable.other.bracket.shell punctuation.definition.variable.shell",
"t": "source.shell meta.scope.if-block.shell meta.arithmetic.shell punctuation.section.bracket.curly.variable.end.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": " ",
"t": "source.shell meta.scope.if-block.shell string.other.math.shell",
"t": "source.shell meta.scope.if-block.shell meta.arithmetic.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": "))",
"t": "source.shell meta.scope.if-block.shell string.other.math.shell punctuation.definition.string.end.shell",
"t": "source.shell meta.scope.if-block.shell meta.arithmetic.shell punctuation.section.arithmetic.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": ";",
"t": "source.shell meta.scope.if-block.shell keyword.operator.list.shell",
"t": "source.shell meta.scope.if-block.shell punctuation.terminator.statement.semicolon.shell",
"r": {
"dark_plus": "keyword.operator: #D4D4D4",
"light_plus": "keyword.operator: #000000",
"dark_vs": "keyword.operator: #D4D4D4",
"light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4",
"dark_plus_experimental": "keyword.operator: #D4D4D4",
"hc_light": "keyword.operator: #000000",
"light_plus_experimental": "keyword.operator: #000000"
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
@@ -407,7 +435,7 @@
},
{
"c": "then",
"t": "source.shell meta.scope.if-block.shell keyword.control.shell",
"t": "source.shell meta.scope.if-block.shell keyword.control.then.shell",
"r": {
"dark_plus": "keyword.control: #C586C0",
"light_plus": "keyword.control: #AF00DB",
@@ -421,7 +449,7 @@
},
{
"c": "\t",
"t": "source.shell meta.scope.if-block.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -435,7 +463,7 @@
},
{
"c": "\"",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell punctuation.definition.string.begin.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.command_name.quoted.shell string.quoted.double.shell punctuation.definition.string.begin.shell entity.name.command.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -448,92 +476,36 @@
}
},
{
"c": "${",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell variable.other.bracket.shell punctuation.definition.variable.shell",
"c": "$",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.command_name.continuation string.quoted.double entity.name.command punctuation.definition.variable.shell punctuation.section.bracket.curly.variable.begin.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "{",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.command_name.continuation string.quoted.double entity.name.command punctuation.section.bracket.curly.variable.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "cmd",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell variable.other.bracket.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
}
},
{
"c": "[",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell variable.other.bracket.shell punctuation.section.array.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
}
},
{
"c": "@",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell variable.other.bracket.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
}
},
{
"c": "]",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell variable.other.bracket.shell punctuation.section.array.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
}
},
{
"c": "}",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell variable.other.bracket.shell punctuation.definition.variable.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
}
},
{
"c": "\"",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell punctuation.definition.string.end.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.command_name.continuation string.quoted.double entity.name.command",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -545,9 +517,79 @@
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "[",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.command_name.continuation string.quoted.double entity.name.command punctuation.section.array.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "@",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.command_name.continuation string.quoted.double entity.name.command",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "]",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.command_name.continuation string.quoted.double entity.name.command punctuation.section.array.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "}",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.command_name.continuation string.quoted.double entity.name.command punctuation.section.bracket.curly.variable.end.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "\"",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell punctuation.definition.string.end.shell entity.name.command.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": "\t",
"t": "source.shell meta.scope.if-block.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -561,21 +603,21 @@
},
{
"c": "printf",
"t": "source.shell meta.scope.if-block.shell support.function.builtin.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell entity.name.command.shell",
"r": {
"dark_plus": "support.function: #DCDCAA",
"light_plus": "support.function: #795E26",
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
"dark_vs": "default: #D4D4D4",
"light_vs": "default: #000000",
"hc_black": "support.function: #DCDCAA",
"dark_plus_experimental": "support.function: #DCDCAA",
"hc_light": "support.function: #5E2CBC",
"light_plus_experimental": "support.function: #795E26"
"hc_black": "default: #FFFFFF",
"dark_plus_experimental": "default: #FFFFFFD3",
"hc_light": "default: #292929",
"light_plus_experimental": "default: #000000E4"
}
},
{
"c": " ",
"t": "source.shell meta.scope.if-block.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -589,7 +631,7 @@
},
{
"c": "'",
"t": "source.shell meta.scope.if-block.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.single.shell punctuation.definition.string.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -603,7 +645,7 @@
},
{
"c": "%s",
"t": "source.shell meta.scope.if-block.shell string.quoted.single.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.single.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -617,7 +659,7 @@
},
{
"c": "'",
"t": "source.shell meta.scope.if-block.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.single.shell punctuation.definition.string.end.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -631,7 +673,7 @@
},
{
"c": " ",
"t": "source.shell meta.scope.if-block.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell",
"r": {
"dark_plus": "default: #D4D4D4",
"light_plus": "default: #000000",
@@ -645,7 +687,7 @@
},
{
"c": "\"",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell punctuation.definition.string.begin.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.definition.string.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
@@ -658,92 +700,106 @@
}
},
{
"c": "${",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell variable.other.bracket.shell punctuation.definition.variable.shell",
"c": "$",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.definition.variable.shell punctuation.section.bracket.curly.variable.begin.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "{",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.section.bracket.curly.variable.begin.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "cmd",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell variable.other.bracket.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "[",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell variable.other.bracket.shell punctuation.section.array.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.section.array.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "@",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell variable.other.bracket.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "]",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell variable.other.bracket.shell punctuation.section.array.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.section.array.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "}",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell variable.other.bracket.shell punctuation.definition.variable.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.section.bracket.curly.variable.end.shell",
"r": {
"dark_plus": "variable: #9CDCFE",
"light_plus": "variable: #001080",
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",
"dark_vs": "string: #CE9178",
"light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE",
"dark_plus_experimental": "variable: #9CDCFE",
"hc_light": "variable: #001080",
"light_plus_experimental": "variable: #001080"
"hc_black": "string: #CE9178",
"dark_plus_experimental": "string: #CE9178",
"hc_light": "string: #0F4A85",
"light_plus_experimental": "string: #A31515"
}
},
{
"c": "\"",
"t": "source.shell meta.scope.if-block.shell string.quoted.double.shell punctuation.definition.string.end.shell",
"t": "source.shell meta.scope.if-block.shell meta.statement.shell meta.command.shell meta.argument.shell string.quoted.double.shell punctuation.definition.string.end.shell",
"r": {
"dark_plus": "string: #CE9178",
"light_plus": "string: #A31515",