Not sure if this is the right place to post this, but I couldn’t find the issue tracker on the github page.
There’s a bug with displaying multi-line quotes using the %q(…) format when in dark mode. The text is black on a black background. Heredocs and normal quoted text works fine, but not %q(…) strings. Here’s some sample code to illustrate:
eval_file "e:/yummy/yummyfillings.rb"
heredoc = <<-TEST
This is a heredoc quoted string.
TEST
qdoc = %q(
This is a q quoted string.
)
plain = "This is a plain quoted string."