Skip to content

Commit 0d7d1e4

Browse files
committed
Add Bash datatypes
1 parent 6b050c1 commit 0d7d1e4

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
type: comment
2+
start: ": '"
3+
end: "'"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
type: string
2+
start: "'"
3+
end: "'"
4+
escape: "'\\'"

data/Language/Bash.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
identifier: Bash
2+
full_name: Bash
23
wikidata: Q189248
34
extensions:
45
- sh
6+
aliases:
7+
- bash
58
line_continuation: '\'
9+
delimiters:
10+
# comment delimiters:
11+
- hash
12+
- bash_multiline_comment
13+
# string delimiters:
14+
- c_char
15+
- backticks
16+
- double_quote_slash_escape
17+
- bash_single_quote_escape
18+
keywords:
19+
- if
20+
- then
21+
- else
22+
- elif
23+
- fi
24+
- case
25+
- esac
26+
- for
27+
- select
28+
- while
29+
- until
30+
- do
31+
- done
32+
- in
33+
- function
34+
- time

0 commit comments

Comments
 (0)