Matthäus G. Chajdas

Results 101 comments of Matthäus G. Chajdas

Looking even further into this, the offending token comes from here: https://github.com/dbcli/cli_helpers/blob/master/cli_helpers/tabular_output/tabulate_adapter.py#L108 -- and the fix might be as simple as changing line 108 to `= Token.Output.TableSeparator`. What I think...

While this has been worked around by pinning the Pygments version, this is not a long-term fix for this issue. I don't see how this is a bug in Pygments...

That's a theme issue really. We have a way to set line number colors, and themes are supposed to set them correctly. If your links have colors which are no...

Yes it is. This might be a good chance to create a full "style checker" script -- we already have a check for color contrast which should be in theory...

I don't see how we can solve this reliably in Pygments. I'd err on the side of caution and keep the current behavior for now.

This is missing the golden tests outputs which you can generate using `pytest --update-goldens`. That said, there are error tokens generated as it looks like the transition to the `CLexer`...

What's the question? Doc strings are classified as `Token.Literal.String.Doc`, and quoted strings as `Token.Literal.String.Double`. I don't see the issue yet? They're both `Token.Literal.String` and should be highlighted as such.

(Original comment by tshatch on 2010-12-21T08:35:00.132796+00:00) Hi, can you provide full steps to reproduce?

(Original comment by None on 2010-12-21T12:36:18.155821+00:00) Create a directory and inside it create a file named **main.cpp** with the following contents: ```c++ #include int main() { // Saying hello to...

(Original comment by None on 2011-03-02T16:41:29.829977+00:00) Hello?