tex constant

LanguageInfo const tex

The information provided by linguist about the "TeX" language or content type.

Implementation

static const LanguageInfo tex = LanguageInfo(
  name: 'TeX',
  type: LanguageType.markup,
  aliases: ['latex'],
  extensions: [
    '.tex',
    '.aux',
    '.bbx',
    '.cbx',
    '.cls',
    '.dtx',
    '.ins',
    '.lbx',
    '.ltx',
    '.mkii',
    '.mkiv',
    '.mkvi',
    '.sty',
    '.toc',
  ],
  filenames: [],
  interpreters: [],
  linguistColor: '#3D6117',
  aceMode: 'tex',
  codeMirrorMode: 'stex',
  codeMirrorMimeType: 'text/x-stex',
  textMateScope: 'text.tex.latex',
);