|
|
|
@ -375,6 +375,7 @@ module.exports = grammar({
|
|
|
|
$.operator,
|
|
|
|
$.operator,
|
|
|
|
$.word,
|
|
|
|
$.word,
|
|
|
|
$.placeholder,
|
|
|
|
$.placeholder,
|
|
|
|
|
|
|
|
$.delimiter,
|
|
|
|
$.block_comment,
|
|
|
|
$.block_comment,
|
|
|
|
$._command,
|
|
|
|
$._command,
|
|
|
|
$.superscript,
|
|
|
|
$.superscript,
|
|
|
|
@ -384,10 +385,12 @@ module.exports = grammar({
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
word: $ => /[^\s\\%\{\},\$\[\]\(\)=\#_\^\-\+\/\*]+/,
|
|
|
|
word: $ => /[^\s\\%\{\},\$\[\]\(\)=\#&_\^\-\+\/\*]+/,
|
|
|
|
|
|
|
|
|
|
|
|
placeholder: $ => /#\d/,
|
|
|
|
placeholder: $ => /#\d/,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
delimiter: $ => /&/,
|
|
|
|
|
|
|
|
|
|
|
|
path: $ => /[^\*\"\[\]:;,\|\{\}<>]+/,
|
|
|
|
path: $ => /[^\*\"\[\]:;,\|\{\}<>]+/,
|
|
|
|
|
|
|
|
|
|
|
|
uri: $ => /[^\[\]\{\}]+/,
|
|
|
|
uri: $ => /[^\[\]\{\}]+/,
|
|
|
|
|