vimSnippet constant

LanguageInfo const vimSnippet

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

Implementation

static const LanguageInfo vimSnippet = LanguageInfo(
  name: 'Vim Snippet',
  type: LanguageType.markup,
  aliases: [
    'SnipMate',
    'UltiSnip',
    'UltiSnips',
    'NeoSnippet',
  ],
  extensions: [
    '.snip',
    '.snippet',
    '.snippets',
  ],
  filenames: [],
  interpreters: [],
  linguistColor: '#199f4b',
  aceMode: 'text',
  textMateScope: 'source.vim-snippet',
);