2015-11-13 13:39:38 +00:00
|
|
|
{
|
|
|
|
"name": "shellscript",
|
2018-02-20 09:07:16 +00:00
|
|
|
"displayName": "%displayName%",
|
|
|
|
"description": "%description%",
|
2018-02-27 14:15:41 +00:00
|
|
|
"version": "1.0.0",
|
2015-11-13 13:39:38 +00:00
|
|
|
"publisher": "vscode",
|
2019-06-06 09:44:50 +00:00
|
|
|
"license": "MIT",
|
2015-11-13 13:39:38 +00:00
|
|
|
"engines": { "vscode": "*" },
|
2016-08-09 08:50:27 +00:00
|
|
|
"scripts": {
|
2017-11-09 17:10:25 +00:00
|
|
|
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-shellscript grammars/shell-unix-bash.cson ./syntaxes/shell-unix-bash.tmLanguage.json"
|
2016-08-09 08:50:27 +00:00
|
|
|
},
|
2015-11-13 13:39:38 +00:00
|
|
|
"contributes": {
|
|
|
|
"languages": [{
|
|
|
|
"id": "shellscript",
|
2018-11-13 10:27:47 +00:00
|
|
|
"aliases": ["Shell Script", "shellscript", "bash", "sh", "zsh", "ksh"],
|
|
|
|
"extensions": [".sh", ".bash", ".bashrc", ".bash_aliases", ".bash_profile", ".bash_login", ".ebuild", ".install", ".profile", ".bash_logout", ".zsh", ".zshrc", ".zprofile", ".zlogin", ".zlogout", ".zshenv", ".zsh-theme", ".ksh"],
|
2019-06-18 14:55:48 +00:00
|
|
|
"filenames": ["APKBUILD", "PKGBUILD"],
|
2019-04-26 12:45:36 +00:00
|
|
|
"firstLine": "^#!.*\\b(bash|zsh|sh|tcsh|ksh|ash|qsh).*|^#\\s*-\\*-[^*]*mode:\\s*shell-script[^*]*-\\*-",
|
2016-07-21 18:30:37 +00:00
|
|
|
"configuration": "./language-configuration.json",
|
2016-02-16 14:53:46 +00:00
|
|
|
"mimetypes": ["text/x-shellscript"]
|
2015-11-13 13:39:38 +00:00
|
|
|
}],
|
|
|
|
"grammars": [{
|
|
|
|
"language": "shellscript",
|
|
|
|
"scopeName": "source.shell",
|
2017-11-09 17:10:25 +00:00
|
|
|
"path": "./syntaxes/shell-unix-bash.tmLanguage.json"
|
2015-11-13 13:39:38 +00:00
|
|
|
}]
|
|
|
|
}
|
2016-05-20 09:49:22 +00:00
|
|
|
}
|