commonLisp constant

LanguageInfo const commonLisp

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

Implementation

static const LanguageInfo commonLisp = LanguageInfo(
  name: 'Common Lisp',
  type: LanguageType.programming,
  aliases: ['lisp'],
  extensions: [
    '.lisp',
    '.asd',
    '.cl',
    '.l',
    '.lsp',
    '.ny',
    '.podsl',
    '.sexp',
  ],
  filenames: [],
  interpreters: [
    'lisp',
    'sbcl',
    'ccl',
    'clisp',
    'ecl',
  ],
  linguistColor: '#3fb68b',
  aceMode: 'lisp',
  codeMirrorMode: 'commonlisp',
  codeMirrorMimeType: 'text/x-common-lisp',
  textMateScope: 'source.lisp',
);