File tree 3 files changed +21
-2
lines changed
3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ 0.3.5]
4
+ ### Added
5
+ - Add initial syntax support for ClassQuery
6
+ - Add initial syntax support for ForeignKey
7
+ ### Fixed
8
+ - Corrected a bit of syntax syntax support for macros
9
+
3
10
## [ 0.3.4]
4
11
### Added
5
12
- Reconnect after change settings
Original file line number Diff line number Diff line change 2
2
"name" : " vscode-cos" ,
3
3
"displayName" : " Caché ObjectScript" ,
4
4
"description" : " Caché ObjectScript language support for Visual Studio Code" ,
5
- "version" : " 0.3.4 " ,
5
+ "version" : " 0.3.5 " ,
6
6
"icon" : " images/logo.png" ,
7
7
"categories" : [
8
8
" Languages" ,
Original file line number Diff line number Diff line change 304
304
{ "comment" : " FK props \" ForeignKey TestKey(Propeties)\" " ,
305
305
"begin" : " \\ (" , "end" :" \\ )" ,
306
306
"patterns" : [
307
-
308
307
{
309
308
"match" : " (\\ w+)" ,
310
309
"captures" : {
327
326
}
328
327
}
329
328
]
329
+ },
330
+ { "comment" : " FK options" ,
331
+ "begin" : " \\ [" , "end" : " \\ ]" ,
332
+ "patterns" : [
333
+ {
334
+ "match" : " (\\ w+)" ,
335
+ "captures" : {
336
+ "1" : { "name" : " variable.parameter.cos" }
337
+ }
338
+ }
339
+ ]
330
340
}
341
+
342
+
331
343
]
332
344
},
333
345
You can’t perform that action at this time.
0 commit comments