Differentiate between bash and sh (#84)

It is more accurate to not consider bash and sh to be the same.  Bash is
a superset of sh. Same goes for tcsh, zsh, fish, rc, es, etc.
This commit is contained in:
Tuncer Ayaz 2016-12-04 21:58:48 +01:00 committed by Aaron Power
parent ca9d1926fe
commit 698e79aa15

View file

@ -78,6 +78,26 @@
"in"
]
},
"Sh":{
"name":"sh",
"base":"hash",
"quotes":[
[
"\\\"",
"\\\""
],
[
"'",
"'"
]
],
"env":[
"sh"
],
"extensions":[
"sh"
]
},
"Bash":{
"name":"BASH",
"base":"hash",
@ -92,12 +112,10 @@
]
],
"env":[
"bash",
"sh"
"bash"
],
"extensions":[
"bash",
"sh"
"bash"
]
},
"Batch":{