Update G-code syntax for Sublime
This commit is contained in:
parent
27203c62b8
commit
c041eec699
@ -10,10 +10,10 @@
|
|||||||
#
|
#
|
||||||
name: G-Code (RepRap)
|
name: G-Code (RepRap)
|
||||||
file_extensions:
|
file_extensions:
|
||||||
- [ gco, gcode ]
|
- [ g, gco, gcode ]
|
||||||
scope: source.gcode
|
scope: source.gcode
|
||||||
variables:
|
variables:
|
||||||
decimal: '[+-]?\d+(\.(\d+)?)?'
|
decimal: '[+-]?\d+(\.\d*)?'
|
||||||
|
|
||||||
contexts:
|
contexts:
|
||||||
prototype:
|
prototype:
|
||||||
@ -25,11 +25,11 @@ contexts:
|
|||||||
pop: true
|
pop: true
|
||||||
|
|
||||||
main:
|
main:
|
||||||
- meta_content_scope: ctx.line.gcode
|
- meta_scope: line.gcode
|
||||||
|
|
||||||
- match: '([Nn]\s*(\d+))'
|
- match: '([Nn]\s*(\d+))'
|
||||||
captures:
|
captures:
|
||||||
1: ctx.gcode_line_num
|
1: entity.nword.gcode
|
||||||
2: constant.numeric.line-number.gcode
|
2: constant.numeric.line-number.gcode
|
||||||
|
|
||||||
- match: ()
|
- match: ()
|
||||||
@ -40,7 +40,7 @@ contexts:
|
|||||||
- meta_content_scope: ctx.command.gcode
|
- meta_content_scope: ctx.command.gcode
|
||||||
|
|
||||||
# M20 S2 P/path/to/file/name.gco
|
# M20 S2 P/path/to/file/name.gco
|
||||||
- match: ([Mm](20))(\s*(S)(2)\s*(P))
|
- match: ([Mm](20))\s*((S)(2)\s*(P))
|
||||||
captures:
|
captures:
|
||||||
1: entity.command.gcode markup.bold.gcode
|
1: entity.command.gcode markup.bold.gcode
|
||||||
2: constant.numeric.command.gcode
|
2: constant.numeric.command.gcode
|
||||||
@ -50,15 +50,15 @@ contexts:
|
|||||||
6: keyword.param.gcode
|
6: keyword.param.gcode
|
||||||
set: gcode_string_arg
|
set: gcode_string_arg
|
||||||
|
|
||||||
# command followed by data
|
# M117 or M118 - Commands taking a string
|
||||||
- match: ([Mm]\s*(11[78]))\b
|
- match: ([Mm]\s*(11[78]))\b
|
||||||
captures:
|
captures:
|
||||||
1: entity.command.gcode markup.bold.gcode
|
1: entity.command.gcode markup.bold.gcode
|
||||||
2: constant.numeric.command.gcode
|
2: constant.numeric.command.gcode
|
||||||
set: gcode_string_arg
|
set: gcode_string_arg
|
||||||
|
|
||||||
# command followed by data
|
# Other commands, followed by data
|
||||||
- match: '([GMTgmt]\s*(\d+)((\.)(\d+))?)'
|
- match: ([GMTgmt]\s*(\d+)((\.)(\d+))?)
|
||||||
captures:
|
captures:
|
||||||
1: entity.command.gcode markup.bold.gcode
|
1: entity.command.gcode markup.bold.gcode
|
||||||
2: constant.numeric.command.gcode
|
2: constant.numeric.command.gcode
|
||||||
@ -74,16 +74,30 @@ contexts:
|
|||||||
- meta_content_scope: ctx.params.gcode
|
- meta_content_scope: ctx.params.gcode
|
||||||
|
|
||||||
# M32 [S<pos>] [P<bool>] !/path/file.gco#
|
# M32 [S<pos>] [P<bool>] !/path/file.gco#
|
||||||
- match: '!'
|
- match: \!
|
||||||
scope: entity.string.filename.open
|
scope: punctuation.string.path.open.gcode
|
||||||
push: gcode_path_arg
|
push: gcode_path_arg
|
||||||
|
|
||||||
# asterisk starts a checksum
|
# asterisk starts a checksum
|
||||||
- match: \*
|
- match: \*
|
||||||
scope: entity.checksum.gcode
|
scope: punctuation.marker.checksum.gcode
|
||||||
set: gcode_checksum
|
set: gcode_checksum
|
||||||
|
|
||||||
# parameter and value
|
# parameter and single-quoted value
|
||||||
|
- match: ([A-Za-z])\s*(')
|
||||||
|
captures:
|
||||||
|
1: keyword.param.gcode
|
||||||
|
2: punctuation.quote.single.open.gcode
|
||||||
|
push: gcode_string_arg_quoted_single
|
||||||
|
|
||||||
|
# parameter and double-quoted value
|
||||||
|
- match: ([A-Za-z])\s*(")
|
||||||
|
captures:
|
||||||
|
1: keyword.param.gcode
|
||||||
|
2: punctuation.quote.double.open.gcode
|
||||||
|
push: gcode_string_arg_quoted_double
|
||||||
|
|
||||||
|
# parameter and numeric value
|
||||||
- match: ([A-Za-z])\s*({{decimal}})
|
- match: ([A-Za-z])\s*({{decimal}})
|
||||||
captures:
|
captures:
|
||||||
1: keyword.param.gcode
|
1: keyword.param.gcode
|
||||||
@ -97,27 +111,67 @@ contexts:
|
|||||||
- match: ()
|
- match: ()
|
||||||
set: syntax_error
|
set: syntax_error
|
||||||
|
|
||||||
|
gcode_string_arg_quoted_single:
|
||||||
|
- meta_content_scope: string.quoted.single.gcode
|
||||||
|
|
||||||
|
- match: ([^'\\]+)
|
||||||
|
|
||||||
|
- match: (\\)
|
||||||
|
scope: punctuation.string.escape.gcode
|
||||||
|
push: escape_char
|
||||||
|
|
||||||
|
- match: (')
|
||||||
|
scope: punctuation.quote.single.close.gcode
|
||||||
|
pop: true
|
||||||
|
|
||||||
|
- match: ()
|
||||||
|
set: syntax_error
|
||||||
|
|
||||||
|
gcode_string_arg_quoted_double:
|
||||||
|
- meta_content_scope: string.quoted.double.gcode
|
||||||
|
|
||||||
|
- match: ([^"\\]+)
|
||||||
|
|
||||||
|
- match: (\\)
|
||||||
|
scope: punctuation.string.escape.gcode
|
||||||
|
push: escape_char
|
||||||
|
|
||||||
|
- match: (")
|
||||||
|
scope: punctuation.quote.double.close.gcode
|
||||||
|
pop: true
|
||||||
|
|
||||||
|
- match: ()
|
||||||
|
set: syntax_error
|
||||||
|
|
||||||
gcode_string_arg:
|
gcode_string_arg:
|
||||||
- meta_content_scope: ctx.string.gcode
|
- meta_content_scope: ctx.string.gcode
|
||||||
|
|
||||||
- match: ([^;]+)
|
- match: ([^;]+)
|
||||||
scope: string.unquoted.gcode
|
scope: string.unquoted.gcode
|
||||||
|
|
||||||
gcode_path_arg:
|
escape_char:
|
||||||
- meta_content_scope: ctx.path.gcode
|
- meta_scope: string.escape.gcode punctuation.string.escape.gcode
|
||||||
|
|
||||||
- match: ([^#]+)
|
- match: '.'
|
||||||
scope: string.unquoted.path.gcode
|
pop: true
|
||||||
|
|
||||||
|
gcode_path_arg:
|
||||||
|
- meta_content_scope: string.unquoted.path.gcode
|
||||||
|
|
||||||
- match: (#)
|
- match: (#)
|
||||||
scope: entity.string.path.close.gcode
|
scope: punctuation.string.path.close.gcode
|
||||||
pop: true
|
pop: true
|
||||||
|
|
||||||
gcode_checksum:
|
gcode_checksum:
|
||||||
- meta_content_scope: ctx.checksum.gcode
|
- meta_content_scope: constant.numeric.checksum.gcode
|
||||||
|
- meta_include_prototype: false
|
||||||
|
|
||||||
- match: \d+
|
- match: \d+
|
||||||
scope: constant.numeric.checksum.gcode
|
|
||||||
|
- match: ( *)$
|
||||||
|
pop: true
|
||||||
|
|
||||||
|
- include: mixin_comment
|
||||||
|
|
||||||
- match: ()
|
- match: ()
|
||||||
set: syntax_error
|
set: syntax_error
|
||||||
@ -130,15 +184,15 @@ contexts:
|
|||||||
# Comments begin with a ';' and finish at the end of the line.
|
# Comments begin with a ';' and finish at the end of the line.
|
||||||
mixin_comment:
|
mixin_comment:
|
||||||
- match: ^\s*;
|
- match: ^\s*;
|
||||||
scope: punctuation.definition.comment.line.start
|
scope: punctuation.comment.line.start
|
||||||
set: gcode_comment
|
set: gcode_comment
|
||||||
- match: \s*;
|
- match: \s*;
|
||||||
scope: punctuation.definition.comment.eol.start
|
scope: punctuation.comment.eol.start
|
||||||
set: gcode_comment
|
set: gcode_comment
|
||||||
|
|
||||||
# Comment to end of line.
|
# Comment to end of line.
|
||||||
gcode_comment:
|
gcode_comment:
|
||||||
- meta_scope: comment.gcode
|
- meta_content_scope: comment.gcode
|
||||||
- match: \s*$
|
- match: \s*$
|
||||||
pop: true
|
pop: true
|
||||||
|
|
||||||
|
88
buildroot/share/sublime/RepRapTools/syntax_test_G-code.gcode
Normal file
88
buildroot/share/sublime/RepRapTools/syntax_test_G-code.gcode
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
; SYNTAX TEST "G-code.sublime-syntax"
|
||||||
|
|
||||||
|
; This is a G-code comment
|
||||||
|
;^comment
|
||||||
|
|
||||||
|
G1 X100 Y100 ; Move to 100,100
|
||||||
|
;^entity.command.gcode
|
||||||
|
; ^keyword.param.gcode
|
||||||
|
; ^constant.numeric.param.gcode
|
||||||
|
; ^comment
|
||||||
|
|
||||||
|
M20 P'/path/to/macro/macro.g' R12
|
||||||
|
;<-entity.command.gcode
|
||||||
|
;^constant.numeric.command.gcode
|
||||||
|
; ^keyword.param.gcode
|
||||||
|
; ^punctuation.quote.single.open.gcode
|
||||||
|
; ^string.quoted.single.gcode
|
||||||
|
; ^punctuation.quote.single.close.gcode
|
||||||
|
|
||||||
|
M117 This is a message ; and comment
|
||||||
|
;<-entity.command.gcode
|
||||||
|
;^constant.numeric.command.gcode
|
||||||
|
; ^string.unquoted.gcode
|
||||||
|
; ^punctuation.comment.eol.start
|
||||||
|
; ^comment.gcode
|
||||||
|
|
||||||
|
M118 This is a message ; and comment
|
||||||
|
;<-entity.command.gcode
|
||||||
|
;^constant.numeric.command.gcode
|
||||||
|
; ^string.unquoted.gcode
|
||||||
|
; ^punctuation.comment.eol.start
|
||||||
|
; ^comment.gcode
|
||||||
|
|
||||||
|
M98 P'/path/to/macro/macro.g' R12
|
||||||
|
;<-entity.command.gcode
|
||||||
|
;^constant.numeric.command.gcode
|
||||||
|
; ^keyword.param.gcode
|
||||||
|
; ^punctuation.quote.single.open.gcode
|
||||||
|
; ^string.quoted.single.gcode
|
||||||
|
; ^punctuation.quote.single.close.gcode
|
||||||
|
|
||||||
|
M98 P"/path/to/macro/macro.g" R12
|
||||||
|
;<-entity.command.gcode
|
||||||
|
;^constant.numeric.command.gcode
|
||||||
|
; ^keyword.param.gcode
|
||||||
|
; ^punctuation.quote.double.open.gcode
|
||||||
|
; ^string.quoted.double.gcode
|
||||||
|
; ^punctuation.quote.double.close.gcode
|
||||||
|
|
||||||
|
M32 S100 P0 !/path/file.gco#
|
||||||
|
;<-entity.command.gcode
|
||||||
|
;^constant.numeric.command.gcode
|
||||||
|
; ^keyword.param.gcode
|
||||||
|
; ^constant.numeric.param.gcode
|
||||||
|
; ^punctuation.string.path.open.gcode
|
||||||
|
; ^string.unquoted.path.gcode
|
||||||
|
; ^punctuation.string.path.close.gcode
|
||||||
|
|
||||||
|
G28 ; Home All
|
||||||
|
;<-entity.command.gcode
|
||||||
|
;^constant.numeric.command.gcode
|
||||||
|
; ^punctuation.comment.eol.start
|
||||||
|
; ^comment.gcode
|
||||||
|
|
||||||
|
N123 G1 X5 Y0 *64 ; EOL Comment
|
||||||
|
;<-entity.nword.gcode
|
||||||
|
;^constant.numeric.line-number.gcode
|
||||||
|
; ^entity.command.gcode
|
||||||
|
; ^constant.numeric.command.gcode
|
||||||
|
; ^keyword.param.gcode
|
||||||
|
; ^constant.numeric.param.gcode
|
||||||
|
; ^punctuation.marker.checksum.gcode
|
||||||
|
; ^constant.numeric.checksum.gcode
|
||||||
|
|
||||||
|
N234 G1 X-5 Y+2 *64 error
|
||||||
|
;<-entity.nword.gcode
|
||||||
|
;^constant.numeric.line-number.gcode
|
||||||
|
; ^entity.command.gcode
|
||||||
|
; ^constant.numeric.command.gcode
|
||||||
|
; ^keyword.param.gcode
|
||||||
|
; ^constant.numeric.param.gcode
|
||||||
|
; ^punctuation.marker.checksum.gcode
|
||||||
|
; ^constant.numeric.checksum.gcode
|
||||||
|
; ^invalid.error.syntax.gcode
|
||||||
|
|
||||||
|
N234 M107 *64
|
||||||
|
; ^-invalid.error.syntax.gcode
|
||||||
|
|
Loading…
Reference in New Issue
Block a user