72 lines
1.8 KiB
JavaScript
72 lines
1.8 KiB
JavaScript
|
/*!-----------------------------------------------------------------------------
|
||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
||
|
* Released under the MIT license
|
||
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||
|
*-----------------------------------------------------------------------------*/
|
||
|
|
||
|
// src/basic-languages/ini/ini.ts
|
||
|
var conf = {
|
||
|
comments: {
|
||
|
lineComment: "#"
|
||
|
},
|
||
|
brackets: [
|
||
|
["{", "}"],
|
||
|
["[", "]"],
|
||
|
["(", ")"]
|
||
|
],
|
||
|
autoClosingPairs: [
|
||
|
{ open: "{", close: "}" },
|
||
|
{ open: "[", close: "]" },
|
||
|
{ open: "(", close: ")" },
|
||
|
{ open: '"', close: '"' },
|
||
|
{ open: "'", close: "'" }
|
||
|
],
|
||
|
surroundingPairs: [
|
||
|
{ open: "{", close: "}" },
|
||
|
{ open: "[", close: "]" },
|
||
|
{ open: "(", close: ")" },
|
||
|
{ open: '"', close: '"' },
|
||
|
{ open: "'", close: "'" }
|
||
|
]
|
||
|
};
|
||
|
var language = {
|
||
|
defaultToken: "",
|
||
|
tokenPostfix: ".ini",
|
||
|
escapes: /\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
|
||
|
tokenizer: {
|
||
|
root: [
|
||
|
[/^\[[^\]]*\]/, "metatag"],
|
||
|
[/(^\w+)(\s*)(\=)/, ["key", "", "delimiter"]],
|
||
|
{ include: "@whitespace" },
|
||
|
[/\d+/, "number"],
|
||
|
[/"([^"\\]|\\.)*$/, "string.invalid"],
|
||
|
[/'([^'\\]|\\.)*$/, "string.invalid"],
|
||
|
[/"/, "string", '@string."'],
|
||
|
[/'/, "string", "@string.'"]
|
||
|
],
|
||
|
whitespace: [
|
||
|
[/[ \t\r\n]+/, ""],
|
||
|
[/^\s*[#;].*$/, "comment"]
|
||
|
],
|
||
|
string: [
|
||
|
[/[^\\"']+/, "string"],
|
||
|
[/@escapes/, "string.escape"],
|
||
|
[/\\./, "string.escape.invalid"],
|
||
|
[
|
||
|
/["']/,
|
||
|
{
|
||
|
cases: {
|
||
|
"$#==$S2": { token: "string", next: "@pop" },
|
||
|
"@default": "string"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
]
|
||
|
}
|
||
|
};
|
||
|
export {
|
||
|
conf,
|
||
|
language
|
||
|
};
|