fortranFreeForm constant

LanguageInfo const fortranFreeForm

The information provided by linguist about the "Fortran Free Form" language or content type.

Implementation

static const LanguageInfo fortranFreeForm = LanguageInfo(
  name: 'Fortran Free Form',
  type: LanguageType.programming,
  aliases: [],
  extensions: [
    '.f90',
    '.f03',
    '.f08',
    '.f95',
  ],
  filenames: [],
  interpreters: [],
  linguistColor: '#4d41b1',
  aceMode: 'text',
  codeMirrorMode: 'fortran',
  codeMirrorMimeType: 'text/x-fortran',
  textMateScope: 'source.fortran.modern',
  group: 'Fortran',
);