Matthew Pickering
Matthew Pickering
It would be good to establish a concrete plan and timeline for removing `v1-` commands from cabal. This has come up two years ago in #9109 and a year ago...
There are quite a few nuances to the `repl -b` option, adding some tests for the feature would be a good first contribution. 1: Does it work in a project...
As reported by @mpilgrem in matrix. > Hi! Cabal gurus. A question: from GHC 9.8.1, GHC puts the Haddock documentation for its boot packages in folders named after the id...
The `pkgroot` variable isn't expanded when present in the `haddock-html` field. This leads to broken links in documentation when you are generating haddocks locally. For example, links to identifiers defined...
The template display window shows the filename of the file which was used to make the template. For various reasons, it might be desirable to give a template a different...
``` #!/usr/bin/env -S cabal run {- cabal: build-depends: base >=4.17 && =1.3.8 , filepath >=1.4.100 , time default-language: GHC2021 ghc-options: -O2 -} import System.OsPath import System.Directory.OsPath (getModificationTime) import Control.Monad main...
It seems to be a shared goal of the community to move in the direction of a more "normal" base package. What progress has been made towards this? * `ghc-internal`...
If we look at the definition of `throw` you will see that the `SomeException` is forced before `raise#` is called. ``` 77 -- | Throw an exception. Exceptions may be...