123456789101112131415161718192021222324 |
- /*!-----------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Version: 0.31.1(337587859b1c171314b40503171188b6cea6a32a)
- * Released under the MIT license
- * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
- *-----------------------------------------------------------------------------*/
- // src/basic-languages/python/python.contribution.ts
- import { registerLanguage } from "../_.contribution.js";
- registerLanguage({
- id: "python",
- extensions: [".py", ".rpy", ".pyw", ".cpy", ".gyp", ".gypi"],
- aliases: ["Python", "py"],
- firstLine: "^#!/.*\\bpython[0-9.-]*\\b",
- loader: () => {
- if (false) {
- return new Promise((resolve, reject) => {
- __require(["vs/basic-languages/python/python"], resolve, reject);
- });
- } else {
- return import("./python.js");
- }
- }
- });
|