mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00:00
21 lines
674 B
JSON
21 lines
674 B
JSON
{
|
|
"name": "shellscript",
|
|
"version": "0.1.0",
|
|
"publisher": "vscode",
|
|
"engines": { "vscode": "*" },
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "shellscript",
|
|
"aliases": ["Shell Script (Bash)", "shellscript"],
|
|
"extensions": [".sh", ".bash", ".bashrc", ".bash_profile", ".bash_login", ".profile", ".bash_logout", ".zsh", ".zshrc"],
|
|
"firstLine": "^#!.*\\b(bash|zsh|sh|tcsh)|^#\\s*-\\*-[^*]*mode:\\s*shell-script[^*]*-\\*-",
|
|
"configuration": "./shellscript.configuration.json",
|
|
"mimetypes": ["text/x-shellscript"]
|
|
}],
|
|
"grammars": [{
|
|
"language": "shellscript",
|
|
"scopeName": "source.shell",
|
|
"path": "./syntaxes/Shell-Unix-Bash.tmLanguage"
|
|
}]
|
|
}
|
|
} |