Wismill

Results 191 comments of Wismill

Python script used to generate the list ```python #!/usr/bin/env python3 import unicodedata combining_chars: list[str] = [] letter_modifiers: list[str] = [] symbol_modifiers: list[str] = [] for cp in range(0x10FFFF + 1):...

I wonder if the key in the augmented `ghc --info` (currently just `ghc`) would better follow some format, such as `ghc:path` or `path:ghc`. This would allow to extend the concept...

@geekosaur good catch, thanks! I went with `TypeApplications` which is more elegant IMHO.

@mpickering I am merely reviving #8718, so I lack the knowledge for the best approach. The use of this key `ghc` is explained at [this comment](https://github.com/sol/doctest/issues/396#issuecomment-1410584365). And: > AFAIK, e.g....

> `cabal` then should also allow for both options to be specified at the same time, e.g.: > > ```bash > $ cabal repl --with-ghc=ghc-9.8.2 --with-repl=doctest > ``` @sol I...

> Prior to GHC 9.4, apparently that would need to be `../../bin` instead of `../bin`. ```diff - Prior to GHC 9.4, apparently that would need to be `../../bin` instead of...

> Are you both against my proposed solution of using an external cabal command? That seems to solve many issues to me. @mpickering sorry, we answered both at the same...

@mpickering @sol I now fully understood the operating and interest of cabal external command. See sol/doctest#424 for an implementation of `cabal-doctest` with some of the ideas developped previously. ```bash cabal...

There is a minor issue: I need to hit “Enter” to finish the program when invoked with `cabal doctest`, but not when invoked as `CABAL=cabal doctest`. Not sure what is...

@sol is working on a proper solution for doctest in sol/doctest#425.