@@ -21,28 +21,28 @@ double_escapes := "\t\n\r\"\\"
2121backtick_code := ` echo ' hello' `
2222# ^ punctuation.section.interpolation.begin.just
2323# ^ punctuation.section.interpolation.end.just
24- # ^^^^^^^^^^^^^^ meta.interpolation.command.shell
24+ # ^^^^^^^^^^^^^^ meta.string.shell meta. interpolation.command.shell
2525
2626# Just interpolation doesn't work inside backticks
2727backtick_no_interp := ` echo {{single_backslash}} `
28- # ^^^^^^^^^^^^^^^^^^^^^^^^^ meta.interpolation.command.shell - meta.interpolation.just
28+ # ^^^^^^^^^^^^^^^^^^^^^^^^^ meta.string.shell meta. interpolation.command.shell - meta.interpolation.just
2929
3030CUR_DIR_NAME := ```
3131# ^^^ punctuation.section.interpolation.begin.just
3232basename ` pwd`
33- # ^^^^^^^^^^^^^ meta.interpolation.command.shell
33+ # ^^^^^^^^^^^^^ meta.string.shell meta. interpolation.command.shell
3434```
3535
3636# This backtick evaluates the command `echo foo\necho bar\n`, which produces the value `foo\nbar\n`.
3737stuff := ```
3838# <- variable.other.just
3939# ^^ keyword.operator.assignment.just
40- # ^^^ meta.interpolation.command.shell punctuation.section.interpolation.begin.just
40+ # ^^^ meta.string.shell meta. interpolation.command.shell punctuation.section.interpolation.begin.just
4141 echo foo
4242 echo bar
43- # ^^^^^^^^ meta.interpolation.command.shell
43+ # ^^^^^^^^ meta.string.shell meta. interpolation.command.shell
4444 ```
45- # ^^^ punctuation.section.interpolation.end.just
45+ # ^^^ meta.string.shell punctuation.section.interpolation.end.just
4646
4747single_block_with_nested_quotes := '''
4848# ^^^ string.quoted.single.block.just punctuation.definition.string.begin.just
0 commit comments