yanzi-monaco-editorbb
Version:
这是一个基于微软的monaco和vue封装的一个代码编辑器,浏览器可运行。主要功能有:html、javascript、css代码编辑,高亮显示,语法错误提示等,可以帮您的项目很快的拥有一个web端的代码编辑器
93 lines (88 loc) • 3.06 kB
JavaScript
((typeof self !== 'undefined' ? self : this)["webpackJsonpyanziMonacoEditor"] = (typeof self !== 'undefined' ? self : this)["webpackJsonpyanziMonacoEditor"] || []).push([[64],{
/***/ "7c1f":
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "conf", function() { return conf; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "language", function() { return language; });
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.32.1(29a273516805a852aa8edc5e05059f119b13eff0)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/
// src/basic-languages/scheme/scheme.ts
var conf = {
comments: {
lineComment: ";",
blockComment: ["#|", "|#"]
},
brackets: [["(", ")"], ["{", "}"], ["[", "]"]],
autoClosingPairs: [{
open: "{",
close: "}"
}, {
open: "[",
close: "]"
}, {
open: "(",
close: ")"
}, {
open: '"',
close: '"'
}],
surroundingPairs: [{
open: "{",
close: "}"
}, {
open: "[",
close: "]"
}, {
open: "(",
close: ")"
}, {
open: '"',
close: '"'
}]
};
var language = {
defaultToken: "",
ignoreCase: true,
tokenPostfix: ".scheme",
brackets: [{
open: "(",
close: ")",
token: "delimiter.parenthesis"
}, {
open: "{",
close: "}",
token: "delimiter.curly"
}, {
open: "[",
close: "]",
token: "delimiter.square"
}],
keywords: ["case", "do", "let", "loop", "if", "else", "when", "cons", "car", "cdr", "cond", "lambda", "lambda*", "syntax-rules", "format", "set!", "quote", "eval", "append", "list", "list?", "member?", "load"],
constants: ["#t", "#f"],
operators: ["eq?", "eqv?", "equal?", "and", "or", "not", "null?"],
tokenizer: {
root: [[/#[xXoObB][0-9a-fA-F]+/, "number.hex"], [/[+-]?\d+(?:(?:\.\d*)?(?:[eE][+-]?\d+)?)?/, "number.float"], [/(?:\b(?:(define|define-syntax|define-macro))\b)(\s+)((?:\w|\-|\!|\?)*)/, ["keyword", "white", "variable"]], {
include: "@whitespace"
}, {
include: "@strings"
}, [/[a-zA-Z_#][a-zA-Z0-9_\-\?\!\*]*/, {
cases: {
"@keywords": "keyword",
"@constants": "constant",
"@operators": "operators",
"@default": "identifier"
}
}]],
comment: [[/[^\|#]+/, "comment"], [/#\|/, "comment", "@push"], [/\|#/, "comment", "@pop"], [/[\|#]/, "comment"]],
whitespace: [[/[ \t\r\n]+/, "white"], [/#\|/, "comment", "@comment"], [/;.*$/, "comment"]],
strings: [[/"$/, "string", "@popall"], [/"(?=.)/, "string", "@multiLineString"]],
multiLineString: [[/[^\\"]+$/, "string", "@popall"], [/[^\\"]+/, "string"], [/\\./, "string.escape"], [/"/, "string", "@popall"], [/\\$/, "string"]]
}
};
/***/ })
}]);