Bash: Added "sh" alias (#3509)

Co-authored-by: RunDevelopment <mitchi5000.ms@googlemail.com>
This commit is contained in:
Bar Hatsor 2022-08-18 16:43:17 +03:00 committed by GitHub
parent 15272f76ff
commit 6b824d479f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 9 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -203,8 +203,9 @@
},
"bash": {
"title": "Bash",
"alias": "shell",
"alias": ["sh", "shell"],
"aliasTitles": {
"sh": "Shell",
"shell": "Shell"
},
"owner": "zeitgeist87"

View File

@ -230,5 +230,6 @@
inside[toBeCopied[i]] = Prism.languages.bash[toBeCopied[i]];
}
Prism.languages.sh = Prism.languages.bash;
Prism.languages.shell = Prism.languages.bash;
}(Prism));

File diff suppressed because one or more lines are too long

View File

@ -190,6 +190,7 @@
"avs": "avisynth",
"avdl": "avro-idl",
"gawk": "awk",
"sh": "bash",
"shell": "bash",
"shortcode": "bbcode",
"rbnf": "bnf",

File diff suppressed because one or more lines are too long

View File

@ -54,6 +54,7 @@
"avdl": "Avro IDL",
"awk": "AWK",
"gawk": "GAWK",
"sh": "Shell",
"basic": "BASIC",
"bbcode": "BBcode",
"bbj": "BBj",

File diff suppressed because one or more lines are too long