shell constant

LanguageInfo const shell

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

Implementation

static const LanguageInfo shell = LanguageInfo(
  name: 'Shell',
  type: LanguageType.programming,
  aliases: [
    'sh',
    'shell-script',
    'bash',
    'zsh',
  ],
  extensions: [
    '.sh',
    '.bash',
    '.bats',
    '.cgi',
    '.command',
    '.fcgi',
    '.ksh',
    '.sh.in',
    '.tmux',
    '.tool',
    '.trigger',
    '.zsh',
    '.zsh-theme',
  ],
  filenames: [
    '.bash_aliases',
    '.bash_functions',
    '.bash_history',
    '.bash_logout',
    '.bash_profile',
    '.bashrc',
    '.cshrc',
    '.flaskenv',
    '.kshrc',
    '.login',
    '.profile',
    '.zlogin',
    '.zlogout',
    '.zprofile',
    '.zshenv',
    '.zshrc',
    '9fs',
    'PKGBUILD',
    'bash_aliases',
    'bash_logout',
    'bash_profile',
    'bashrc',
    'cshrc',
    'gradlew',
    'kshrc',
    'login',
    'man',
    'profile',
    'zlogin',
    'zlogout',
    'zprofile',
    'zshenv',
    'zshrc',
  ],
  interpreters: [
    'ash',
    'bash',
    'dash',
    'ksh',
    'mksh',
    'pdksh',
    'rc',
    'sh',
    'zsh',
  ],
  linguistColor: '#89e051',
  aceMode: 'sh',
  codeMirrorMode: 'shell',
  codeMirrorMimeType: 'text/x-sh',
  textMateScope: 'source.shell',
);