awa
This commit is contained in:
224
_internal/editor/dev/vs/shell-BmIjpZz5.js
Normal file
224
_internal/editor/dev/vs/shell-BmIjpZz5.js
Normal file
@@ -0,0 +1,224 @@
|
||||
define("vs/shell-BmIjpZz5", ["exports"], (function(exports) {
|
||||
"use strict";
|
||||
const conf = {
|
||||
comments: {
|
||||
lineComment: "#"
|
||||
},
|
||||
brackets: [
|
||||
["{", "}"],
|
||||
["[", "]"],
|
||||
["(", ")"]
|
||||
],
|
||||
autoClosingPairs: [
|
||||
{ open: "{", close: "}" },
|
||||
{ open: "[", close: "]" },
|
||||
{ open: "(", close: ")" },
|
||||
{ open: '"', close: '"' },
|
||||
{ open: "'", close: "'" },
|
||||
{ open: "`", close: "`" }
|
||||
],
|
||||
surroundingPairs: [
|
||||
{ open: "{", close: "}" },
|
||||
{ open: "[", close: "]" },
|
||||
{ open: "(", close: ")" },
|
||||
{ open: '"', close: '"' },
|
||||
{ open: "'", close: "'" },
|
||||
{ open: "`", close: "`" }
|
||||
]
|
||||
};
|
||||
const language = {
|
||||
defaultToken: "",
|
||||
ignoreCase: true,
|
||||
tokenPostfix: ".shell",
|
||||
brackets: [
|
||||
{ token: "delimiter.bracket", open: "{", close: "}" },
|
||||
{ token: "delimiter.parenthesis", open: "(", close: ")" },
|
||||
{ token: "delimiter.square", open: "[", close: "]" }
|
||||
],
|
||||
keywords: [
|
||||
"if",
|
||||
"then",
|
||||
"do",
|
||||
"else",
|
||||
"elif",
|
||||
"while",
|
||||
"until",
|
||||
"for",
|
||||
"in",
|
||||
"esac",
|
||||
"fi",
|
||||
"fin",
|
||||
"fil",
|
||||
"done",
|
||||
"exit",
|
||||
"set",
|
||||
"unset",
|
||||
"export",
|
||||
"function"
|
||||
],
|
||||
builtins: [
|
||||
"ab",
|
||||
"awk",
|
||||
"bash",
|
||||
"beep",
|
||||
"cat",
|
||||
"cc",
|
||||
"cd",
|
||||
"chown",
|
||||
"chmod",
|
||||
"chroot",
|
||||
"clear",
|
||||
"cp",
|
||||
"curl",
|
||||
"cut",
|
||||
"diff",
|
||||
"echo",
|
||||
"find",
|
||||
"gawk",
|
||||
"gcc",
|
||||
"get",
|
||||
"git",
|
||||
"grep",
|
||||
"hg",
|
||||
"kill",
|
||||
"killall",
|
||||
"ln",
|
||||
"ls",
|
||||
"make",
|
||||
"mkdir",
|
||||
"openssl",
|
||||
"mv",
|
||||
"nc",
|
||||
"node",
|
||||
"npm",
|
||||
"ping",
|
||||
"ps",
|
||||
"restart",
|
||||
"rm",
|
||||
"rmdir",
|
||||
"sed",
|
||||
"service",
|
||||
"sh",
|
||||
"shopt",
|
||||
"shred",
|
||||
"source",
|
||||
"sort",
|
||||
"sleep",
|
||||
"ssh",
|
||||
"start",
|
||||
"stop",
|
||||
"su",
|
||||
"sudo",
|
||||
"svn",
|
||||
"tee",
|
||||
"telnet",
|
||||
"top",
|
||||
"touch",
|
||||
"vi",
|
||||
"vim",
|
||||
"wall",
|
||||
"wc",
|
||||
"wget",
|
||||
"who",
|
||||
"write",
|
||||
"yes",
|
||||
"zsh"
|
||||
],
|
||||
startingWithDash: /\-+\w+/,
|
||||
identifiersWithDashes: /[a-zA-Z]\w+(?:@startingWithDash)+/,
|
||||
// we include these common regular expressions
|
||||
symbols: /[=><!~?&|+\-*\/\^;\.,]+/,
|
||||
// The main tokenizer for our languages
|
||||
tokenizer: {
|
||||
root: [
|
||||
[/@identifiersWithDashes/, ""],
|
||||
[/(\s)((?:@startingWithDash)+)/, ["white", "attribute.name"]],
|
||||
[
|
||||
/[a-zA-Z]\w*/,
|
||||
{
|
||||
cases: {
|
||||
"@keywords": "keyword",
|
||||
"@builtins": "type.identifier",
|
||||
"@default": ""
|
||||
}
|
||||
}
|
||||
],
|
||||
{ include: "@whitespace" },
|
||||
{ include: "@strings" },
|
||||
{ include: "@parameters" },
|
||||
{ include: "@heredoc" },
|
||||
[/[{}\[\]()]/, "@brackets"],
|
||||
[/@symbols/, "delimiter"],
|
||||
{ include: "@numbers" },
|
||||
[/[,;]/, "delimiter"]
|
||||
],
|
||||
whitespace: [
|
||||
[/\s+/, "white"],
|
||||
[/(^#!.*$)/, "metatag"],
|
||||
[/(^#.*$)/, "comment"]
|
||||
],
|
||||
numbers: [
|
||||
[/\d*\.\d+([eE][\-+]?\d+)?/, "number.float"],
|
||||
[/0[xX][0-9a-fA-F_]*[0-9a-fA-F]/, "number.hex"],
|
||||
[/\d+/, "number"]
|
||||
],
|
||||
// Recognize strings, including those broken across lines
|
||||
strings: [
|
||||
[/'/, "string", "@stringBody"],
|
||||
[/"/, "string", "@dblStringBody"]
|
||||
],
|
||||
stringBody: [
|
||||
[/'/, "string", "@popall"],
|
||||
[/./, "string"]
|
||||
],
|
||||
dblStringBody: [
|
||||
[/"/, "string", "@popall"],
|
||||
[/./, "string"]
|
||||
],
|
||||
heredoc: [
|
||||
[
|
||||
/(<<[-<]?)(\s*)(['"`]?)([\w\-]+)(['"`]?)/,
|
||||
[
|
||||
"constants",
|
||||
"white",
|
||||
"string.heredoc.delimiter",
|
||||
"string.heredoc",
|
||||
"string.heredoc.delimiter"
|
||||
]
|
||||
]
|
||||
],
|
||||
parameters: [
|
||||
[/\$\d+/, "variable.predefined"],
|
||||
[/\$\w+/, "variable"],
|
||||
[/\$[*@#?\-$!0_]/, "variable"],
|
||||
[/\$'/, "variable", "@parameterBodyQuote"],
|
||||
[/\$"/, "variable", "@parameterBodyDoubleQuote"],
|
||||
[/\$\(/, "variable", "@parameterBodyParen"],
|
||||
[/\$\{/, "variable", "@parameterBodyCurlyBrace"]
|
||||
],
|
||||
parameterBodyQuote: [
|
||||
[/[^#:%*@\-!_']+/, "variable"],
|
||||
[/[#:%*@\-!_]/, "delimiter"],
|
||||
[/[']/, "variable", "@pop"]
|
||||
],
|
||||
parameterBodyDoubleQuote: [
|
||||
[/[^#:%*@\-!_"]+/, "variable"],
|
||||
[/[#:%*@\-!_]/, "delimiter"],
|
||||
[/["]/, "variable", "@pop"]
|
||||
],
|
||||
parameterBodyParen: [
|
||||
[/[^#:%*@\-!_)]+/, "variable"],
|
||||
[/[#:%*@\-!_]/, "delimiter"],
|
||||
[/[)]/, "variable", "@pop"]
|
||||
],
|
||||
parameterBodyCurlyBrace: [
|
||||
[/[^#:%*@\-!_}]+/, "variable"],
|
||||
[/[#:%*@\-!_]/, "delimiter"],
|
||||
[/[}]/, "variable", "@pop"]
|
||||
]
|
||||
}
|
||||
};
|
||||
exports.conf = conf;
|
||||
exports.language = language;
|
||||
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
||||
}));
|
||||
Reference in New Issue
Block a user