File tree Expand file tree Collapse file tree 5 files changed +25
-8
lines changed Expand file tree Collapse file tree 5 files changed +25
-8
lines changed Original file line number Diff line number Diff line change 1
1
// A launch configuration that launches the extension inside a new window
2
2
{
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.1.1 " ,
4
4
"configurations" : [
5
5
{
6
6
"name" : " Launch Extension" ,
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
All changes to vscode-code-syntax will be documented here.
3
3
4
+ ## v0.1.1 [ #] ( )
5
+
4
6
## v0.1.0 [ #] ( https://github.com/appliedengdesign/vscode-gcode-syntax/releases/tag/v0.1.0 )
5
7
6
8
- Initial Release
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ Install & activate extension. Extension activates when you open a file marked fo
25
25
26
26
## Known Issues
27
27
28
- No known issues at this time .
28
+ Please visit our [ GitHub Issues ] ( https://github.com/appliedengdesign/vscode-gcode-syntax/ issues) page for any open issues .
29
29
30
30
## TODO
31
31
Original file line number Diff line number Diff line change 2
2
"name" : " vscode-gcode-syntax" ,
3
3
"displayName" : " G-Code Syntax" ,
4
4
"description" : " CNC G-Code Syntax Langauge" ,
5
- "version" : " 0.1.0 " ,
5
+ "version" : " 0.1.1 " ,
6
6
"license" : " MIT" ,
7
7
"publisher" : " appliedengdesign" ,
8
8
"author" : {
Original file line number Diff line number Diff line change 5
5
{
6
6
"include" : " #comments"
7
7
},
8
- {
9
- "include" : " #keywords"
10
- },
11
8
{
12
9
"include" : " #speedsfeeds"
13
10
},
25
22
},
26
23
{
27
24
"include" : " #macrovars"
25
+ },
26
+ {
27
+ "include" : " #keywords"
28
+ },
29
+ {
30
+ "include" : " #operators"
28
31
}
29
32
],
30
33
"repository" : {
60
63
"name" : " string.gcode"
61
64
},
62
65
{
63
- "match" : " (GOTO)|(IF)|(EQ)|(NE)|(LT)|(GT)" ,
66
+ "match" : " (GOTO)|(IF)|(EQ)|(NE)|(LT)|(GT)|(LE)|(GE)|(DO)|(WHILE)|(END)|(AND)|(OR)|(XOR) " ,
64
67
"name" : " keyword.control.gcode"
65
68
}
66
69
]
67
70
},
68
71
"operators" : {
69
72
"patterns" : [
70
73
{
71
- "match" : " (SIN)|(COS)|(TAN)" ,
74
+ "match" : " (SIN)|(COS)|(TAN)|(ASIN)|(ACOS)|(ATAN)|(LN)|(SQRT)|(MOD)|(EXP) " ,
72
75
"name" : " support.constant.math.gcode"
76
+ },
77
+ {
78
+ "match" : " (FIX)|(FUP)|(ROUND)|(ABS)" ,
79
+ "name" : " support.constant.math.gcode"
80
+ },
81
+ {
82
+ "match" : " (\\ +)|(\\ *)|(\\ /)|(\\ *\\ *)" ,
83
+ "name" : " support.constant.math.gcode"
84
+ },
85
+ {
86
+ "match" : " (\\ -)" ,
87
+ "name" : " invalid.gcode"
73
88
}
74
89
]
75
90
},
You can’t perform that action at this time.
0 commit comments