Skip to content

Commit f9c8ed2

Browse files
authored
csv mode (#5748)
1 parent 18cc336 commit f9c8ed2

11 files changed

+570
-1
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ npm-debug.log
2525
deps/
2626
dist
2727

28-
lib/ace
28+
lib/ace
29+
styles

ace-modes.d.ts

+16
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,14 @@ declare module "ace-code/src/mode/css" {
303303
export const Mode: new () => import("ace-code").Ace.SyntaxMode;
304304
}
305305

306+
declare module "ace-code/src/mode/csv_highlight_rules" {
307+
export const CsvHighlightRules: new () => import("ace-code").Ace.HighlightRules;
308+
}
309+
310+
declare module "ace-code/src/mode/csv" {
311+
export const Mode: new () => import("ace-code").Ace.SyntaxMode;
312+
}
313+
306314
declare module "ace-code/src/mode/curly_highlight_rules" {
307315
export const CurlyHighlightRules: new () => import("ace-code").Ace.HighlightRules;
308316
}
@@ -1579,6 +1587,14 @@ declare module "ace-code/src/mode/toml" {
15791587
export const Mode: new () => import("ace-code").Ace.SyntaxMode;
15801588
}
15811589

1590+
declare module "ace-code/src/mode/tsv_highlight_rules" {
1591+
export const TsvHighlightRules: new () => import("ace-code").Ace.HighlightRules;
1592+
}
1593+
1594+
declare module "ace-code/src/mode/tsv" {
1595+
export const Mode: new () => import("ace-code").Ace.SyntaxMode;
1596+
}
1597+
15821598
declare module "ace-code/src/mode/tsx_highlight_rules" {
15831599
export const TsxHighlightRules: new () => import("ace-code").Ace.HighlightRules;
15841600
}

demo/kitchen-sink/docs/csv.csv

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
col1,col2 long,col3,col4,
2+
"col1,with quotes",col2,col3,col4,
3+
col1,col2,col"""3,co""l4,
4+
col1,col2,col3"broken",col4,
5+
col1",-"col2,col3,col4,col5
6+
col1,"col2
7+
multiline","col3
8+
multiline""string
9+
3","col4
10+
multiline string
11+
12+
4"
13+
col1,col2,"c,o,l""3",col4,col5,col6,col7,col8,col9,col10,col11,col12,col13
14+
col1,col2,col3,col4,col5,col6,col7,col8,col9,col10,col11,col12,col13
15+
col1,col2,col3,col4,col5,col6,co"l7,col8,col9,col10,11,col12,col13

demo/kitchen-sink/docs/tsv.tsv

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
col1 col2 long col3 col4
2+
"col1 with quotes" col2 col3 col4
3+
col1 col2 col"""3 co""l4
4+
col1 col2 col3"broken" col4
5+
col1" -"col2 col3 col4 col5
6+
col1 "col2
7+
multiline" "col3
8+
multiline""string
9+
3" "col4
10+
multiline string
11+
12+
4"
13+
col1 col2 "c o l""3" col4 col5 col6 col7 col8 col9 col10 col11 col12 col13
14+
col1 col2 col3 col4 col5 col6 col7 col8 col9 col10 col11 col12 col13
15+
col1 col2 col3 col4 col5 col6 co"l7 col8 col9 col10 11 col12 col13

src/ext/modelist.js

+2
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ var supportedModes = {
8787
Csound_Orchestra: ["orc"],
8888
Csound_Score: ["sco"],
8989
CSS: ["css"],
90+
CSV: ["csv"],
9091
Curly: ["curly"],
9192
Cuttlefish: ["conf"],
9293
D: ["d|di"],
@@ -229,6 +230,7 @@ var supportedModes = {
229230
Text: ["txt"],
230231
Textile: ["textile"],
231232
Toml: ["toml"],
233+
TSV: ["tsv"],
232234
TSX: ["tsx"],
233235
Turtle: ["ttl"],
234236
Twig: ["twig|swig"],

src/mode/_test/tokens_csv.json

+196
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,196 @@
1+
[[
2+
"start",
3+
["keyword.csv_0","col1"],
4+
["text.csv_1.csv_separator",","],
5+
["text.csv_1","col2 long"],
6+
["string.csv_2.csv_separator",","],
7+
["string.csv_2","col3"],
8+
["string.regex.csv_3.csv_separator",","],
9+
["string.regex.csv_3","col4"],
10+
["variable.csv_4.csv_separator",","]
11+
],[
12+
"start",
13+
["keyword.csv_0","\""],
14+
["keyword.csv_0","col1"],
15+
["keyword.csv_0",","],
16+
["keyword.csv_0","with quotes"],
17+
["keyword.csv_0","\""],
18+
["text.csv_1.csv_separator",","],
19+
["text.csv_1","col2"],
20+
["string.csv_2.csv_separator",","],
21+
["string.csv_2","col3"],
22+
["string.regex.csv_3.csv_separator",","],
23+
["string.regex.csv_3","col4"],
24+
["variable.csv_4.csv_separator",","]
25+
],[
26+
"start",
27+
["keyword.csv_0","col1"],
28+
["text.csv_1.csv_separator",","],
29+
["text.csv_1","col2"],
30+
["string.csv_2.csv_separator",","],
31+
["string.csv_2","col"],
32+
["string.csv_2","\""],
33+
["string.csv_2","\""],
34+
["string.csv_2","\""],
35+
["string.csv_2","3"],
36+
["string.regex.csv_3.csv_separator",","],
37+
["string.regex.csv_3","co"],
38+
["string.regex.csv_3","\""],
39+
["string.regex.csv_3","\""],
40+
["string.regex.csv_3","l4"],
41+
["variable.csv_4.csv_separator",","]
42+
],[
43+
"start",
44+
["keyword.csv_0","col1"],
45+
["text.csv_1.csv_separator",","],
46+
["text.csv_1","col2"],
47+
["string.csv_2.csv_separator",","],
48+
["string.csv_2","col3"],
49+
["string.csv_2","\""],
50+
["string.csv_2","broken"],
51+
["string.csv_2","\""],
52+
["string.regex.csv_3.csv_separator",","],
53+
["string.regex.csv_3","col4"],
54+
["variable.csv_4.csv_separator",","]
55+
],[
56+
"start",
57+
["keyword.csv_0","col1"],
58+
["keyword.csv_0","\""],
59+
["text.csv_1.csv_separator",","],
60+
["text.csv_1","-"],
61+
["text.csv_1","\""],
62+
["text.csv_1","col2"],
63+
["string.csv_2.csv_separator",","],
64+
["string.csv_2","col3"],
65+
["string.regex.csv_3.csv_separator",","],
66+
["string.regex.csv_3","col4"],
67+
["variable.csv_4.csv_separator",","],
68+
["variable.csv_4","col5"]
69+
],[
70+
"string-1",
71+
["keyword.csv_0","col1"],
72+
["text.csv_1.csv_separator",","],
73+
["text.csv_1","\""],
74+
["text.csv_1","col2"]
75+
],[
76+
"string-2",
77+
["text.csv_1","multiline"],
78+
["text.csv_1","\""],
79+
["string.csv_2.csv_separator",","],
80+
["string.csv_2","\""],
81+
["string.csv_2","col3"]
82+
],[
83+
"string-2",
84+
["string.csv_2","multiline"],
85+
["string.csv_2","\"\""],
86+
["string.csv_2","string"]
87+
],[
88+
"string-3",
89+
["string.csv_2","3"],
90+
["string.csv_2","\""],
91+
["string.regex.csv_3.csv_separator",","],
92+
["string.regex.csv_3","\""],
93+
["string.regex.csv_3","col4"]
94+
],[
95+
"string-3",
96+
["string.regex.csv_3","multiline string"]
97+
],[
98+
"string-3"
99+
],[
100+
"start",
101+
["string.regex.csv_3","4"],
102+
["string.regex.csv_3","\""]
103+
],[
104+
"start",
105+
["keyword.csv_0","col1"],
106+
["text.csv_1.csv_separator",","],
107+
["text.csv_1","col2"],
108+
["string.csv_2.csv_separator",","],
109+
["string.csv_2","\""],
110+
["string.csv_2","c"],
111+
["string.csv_2",","],
112+
["string.csv_2","o"],
113+
["string.csv_2",","],
114+
["string.csv_2","l"],
115+
["string.csv_2","\"\""],
116+
["string.csv_2","3"],
117+
["string.csv_2","\""],
118+
["string.regex.csv_3.csv_separator",","],
119+
["string.regex.csv_3","col4"],
120+
["variable.csv_4.csv_separator",","],
121+
["variable.csv_4","col5"],
122+
["constant.numeric.csv_5.csv_separator",","],
123+
["constant.numeric.csv_5","col6"],
124+
["keyword.csv_6.csv_separator",","],
125+
["keyword.csv_6","col7"],
126+
["text.csv_7.csv_separator",","],
127+
["text.csv_7","col8"],
128+
["string.csv_8.csv_separator",","],
129+
["string.csv_8","col9"],
130+
["string.regex.csv_9.csv_separator",","],
131+
["string.regex.csv_9","col10"],
132+
["variable.csv_10.csv_separator",","],
133+
["variable.csv_10","col11"],
134+
["constant.numeric.csv_11.csv_separator",","],
135+
["constant.numeric.csv_11","col12"],
136+
["keyword.csv_12.csv_separator",","],
137+
["keyword.csv_12","col13"]
138+
],[
139+
"start",
140+
["keyword.csv_0","col1"],
141+
["text.csv_1.csv_separator",","],
142+
["text.csv_1","col2"],
143+
["string.csv_2.csv_separator",","],
144+
["string.csv_2","col3"],
145+
["string.regex.csv_3.csv_separator",","],
146+
["string.regex.csv_3","col4"],
147+
["variable.csv_4.csv_separator",","],
148+
["variable.csv_4","col5"],
149+
["constant.numeric.csv_5.csv_separator",","],
150+
["constant.numeric.csv_5","col6"],
151+
["keyword.csv_6.csv_separator",","],
152+
["keyword.csv_6","col7"],
153+
["text.csv_7.csv_separator",","],
154+
["text.csv_7","col8"],
155+
["string.csv_8.csv_separator",","],
156+
["string.csv_8","col9"],
157+
["string.regex.csv_9.csv_separator",","],
158+
["string.regex.csv_9","col10"],
159+
["variable.csv_10.csv_separator",","],
160+
["variable.csv_10","col11"],
161+
["constant.numeric.csv_11.csv_separator",","],
162+
["constant.numeric.csv_11","col12"],
163+
["keyword.csv_12.csv_separator",","],
164+
["keyword.csv_12","col13"]
165+
],[
166+
"start",
167+
["keyword.csv_0","col1"],
168+
["text.csv_1.csv_separator",","],
169+
["text.csv_1","col2"],
170+
["string.csv_2.csv_separator",","],
171+
["string.csv_2","col3"],
172+
["string.regex.csv_3.csv_separator",","],
173+
["string.regex.csv_3","col4"],
174+
["variable.csv_4.csv_separator",","],
175+
["variable.csv_4","col5"],
176+
["constant.numeric.csv_5.csv_separator",","],
177+
["constant.numeric.csv_5","col6"],
178+
["keyword.csv_6.csv_separator",","],
179+
["keyword.csv_6","co"],
180+
["keyword.csv_6","\""],
181+
["keyword.csv_6","l7"],
182+
["text.csv_7.csv_separator",","],
183+
["text.csv_7","col8"],
184+
["string.csv_8.csv_separator",","],
185+
["string.csv_8","col9"],
186+
["string.regex.csv_9.csv_separator",","],
187+
["string.regex.csv_9","col10"],
188+
["variable.csv_10.csv_separator",","],
189+
["variable.csv_10","11"],
190+
["constant.numeric.csv_11.csv_separator",","],
191+
["constant.numeric.csv_11","col12"],
192+
["keyword.csv_12.csv_separator",","],
193+
["keyword.csv_12","col13"]
194+
],[
195+
"start"
196+
]]

0 commit comments

Comments
 (0)