python.contribution.js 650 B

123456789101112
  1. /*---------------------------------------------------------------------------------------------
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for license information.
  4. *--------------------------------------------------------------------------------------------*/
  5. import { registerLanguage } from '../_.contribution.js';
  6. registerLanguage({
  7. id: 'python',
  8. extensions: ['.py', '.rpy', '.pyw', '.cpy', '.gyp', '.gypi'],
  9. aliases: ['Python', 'py'],
  10. firstLine: '^#!/.*\\bpython[0-9.-]*\\b',
  11. loader: function () { return import('./python.js'); }
  12. });