You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some languages require knowing a previous token to be able to correctly highlight them. For example:
Lua allows putting an arbitrary amount of equals signs = between the two square brackets for long strings ([[ ... ]]) and block comments (--[[ ... ]]). The equals signs must be balanced (same amount for the opening and closing token).
C# allows using more than tree double-quote characters """ for long strings literals.
Unix shells (Bash, Zsh, etc.) allow creating "heredoc" strings with the << operator:
cat <<EOFThis will be treated as text, piped into cat's standard input.Variables like $x may be expanded here.EOF
In the case of shell heredocs, the problem is worse because the text after << can be anything.
Thus, my suggestion: Allow YAML grammar files to use captures with $1, $2 and so on, similarly to how it currently works with the replaceall command.
The text was updated successfully, but these errors were encountered:
How are you proposing that would work in practice? What would the syntax file using captures look like? How would the syntax rules know which capture they're referring to, especially when there are multiple? Could they be nested?
At some point there were plans to integrate PEG-based zyedidia/flare in micro which would provide a more robust solution, but I don't know if anyone has worked on that since. 3
Lua allows putting an arbitrary amount of equals signs = between the two square brackets for long strings ([[ ... ]]) and block comments (--[[ ... ]]). The equals signs must be balanced (same amount for the opening and closing token).
For this case it's in practice "good enough" to hard-code couple of the first ones (that's what I did for Rust's r##".."## strings in #3192)
Some languages require knowing a previous token to be able to correctly highlight them. For example:
=
between the two square brackets for long strings ([[ ... ]]
) and block comments (--[[ ... ]]
). The equals signs must be balanced (same amount for the opening and closing token)."""
for long strings literals.<<
operator:In the case of shell heredocs, the problem is worse because the text after
<<
can be anything.Thus, my suggestion: Allow YAML grammar files to use captures with
$1
,$2
and so on, similarly to how it currently works with thereplaceall
command.The text was updated successfully, but these errors were encountered: