Torsten Schmits
Torsten Schmits
sure, I'd be glad to accept contributions! your reasoning sounds sensible, though backward compat is probably more crucial for this command than others...how about adding an optional positional argument for...
Wow, glad to hear it's working so well for you, thanks for the feedback ☺️ Have you already attempted to build a package set on top of such a GHC...
Hey! Github flake inputs are equivalent to directories, so you should be able to simply use `sem-log = source.root sem-log;` there (if the Cabal project is at the root, otherwise...
Actually, it would be best if it just worked the way you tried it, using `sem-log = sem-log` – if the value is a path, it could default to `source.root`!
huh! curious, I'll investigate
huh. That really is highly peculiar... It appears that not all nodes are affected, so I would speculate that this is caused by some of the zero-width nodes parsed by...
hmm is that due to the fact that the dot is parsed by the scanner? Would you have the same problem with literal terminals, i.e. if it was a plain...
ah, can I get the CLI to display text nodes like in your snippet?
@Wilfred I lifted your printing code and ran it against my current development efforts, can you confirm that this is the desired structure: ``` haskell (0, 0) - (0, 12)...
For varids, we use this regex: ``` varid_pattern = /[_\p{Ll}](\w|')*#?/u ``` The first character is in the Ll class of lowercase letters, and it's unclear to me whether that would...