Dockerfile syntax
Summary
HERE document parsing does not work
Example
FROM ubuntu:20.04
RUN <<EOF
apt-get update
apt-get install tree
EOF
RUN tree /tmp
The last line will not color correctly.
Reproduction Steps
No response
Helix log
No response
Platform
Linux
Terminal Emulator
xterm-256color
Helix Version
helix 22.05 (27609f50)
Validated this on the most recent version: helix 22.05 (dfc31e74)
It is an upstream bug in the treesitter grammar itself, unfortunately: https://github.com/camdencheek/tree-sitter-dockerfile/issues/4
There is a workaround, but I think its brittle and ugly to have to use the backslashes all over

There is no heredoc in this screenshot, so the problem doesn't exist. If you mean to use backslashes and && instead of a heredoc -- yeah that's always possible, I'm very used to it.
It seems that there have been fixes for this that were merged, but they don't seem to be applied in the latest version of Helix? I'm kind of confused about the status of this issue.
If the fixes are not applied, is there a way that I can apply them myself in my config files?
Seems like the support is merged upstream. but someone needs to update the queries/highlights here along with the rev change.