chtenb

Results 263 comments of chtenb

@SimaTian Hi again. I'm still having the same issue on the `linux` branch, I have not been able to find out why your fix doesn't work with the more complex...

As you have seen on the `linux` branch, we have this command in Rubjerg.Graphviz.csproj, which is intended to copy the **contents** (files and folders) of the Resources/ folder to the...

Thanks for your response. I've tried to make it work with Copy in the past, but it always failed to register transitively. So referencing projects wouldn't get the resources in...

Worked around this by no longer supporting consumption as a .NET project, only as a nuget package.

What does private import mean, and why is listed differently than other modules?

In response to the starting character vs delimiter, when choosing `{` as delimiter you have a character that doesn't occur naturally in strings much. I agree that most of the...

I see what you're getting at. In the context of string interpolation you are more likely to want to put everything on a single line, increasing the chance that braces...

`` is not a bad idea, since their usage in type signatures is not likely to come up in string interpolation contexts, solving the visual problem that `{}` has with...

With configurable delimiters it would probably be wise to have the escape character `\` be fixed for all interpolators? Intuitively I think that would keep things more sane than using...

> Due to nested strings / interpolation, you have to resolve this at lexing time, otherwise you cannot find the end of the string! Yeah, not surprising :) The grammar...