ERB vs EMBEDDED_TEMPLATE heredocs #1875
-
Hey all! I noticed in the docs the use of I did some looking and I can't figure out which plugin is managing the syntax highlighting (I use the lunar vim distribution) but I suspect it's probably tree sitter. I wonder if it would be possible to get ERB aliased somehow in those plugins for a tidier experience. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @powersurge360, thanks for asking about this and for your willingness to dig in. The docsite is generated by Jekyll, which uses the rouge gem by default. I just had a look at rouge's Ruby lexer and I don't see anything in there for syntax highlighting heredocs. It looks like it's possible to compose lexers together though. Check out how the ERB lexer does it here. Good luck! |
Beta Was this translation helpful? Give feedback.
Hey @powersurge360, thanks for asking about this and for your willingness to dig in. The docsite is generated by Jekyll, which uses the rouge gem by default. I just had a look at rouge's Ruby lexer and I don't see anything in there for syntax highlighting heredocs. It looks like it's possible to compose lexers together though. Check out how the ERB lexer does it here.
Good luck!