Allow bash, sh, zsh as language hints for shellscript

This commit is contained in:
Daniel Imms 2016-03-17 10:06:08 -07:00
parent 1a3af0554d
commit 10927a864d

View file

@ -6,7 +6,7 @@
"contributes": {
"languages": [{
"id": "shellscript",
"aliases": ["Shell Script (Bash)", "shellscript"],
"aliases": ["Shell Script (Bash)", "shellscript", "bash", "sh", "zsh"],
"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",