ghcid icon indicating copy to clipboard operation
ghcid copied to clipboard

Very low feature GHCi based IDE

Results 100 ghcid issues
Sort by recently updated
recently updated
newest added

Thanks for your continued work on ghcid. It is an essential haskell tool. These are a few random fixes for minor issues. I have put them in four different commits...

I'm trying to use `--test Devel.main` to automatically restart a webserver. On first runs this works, but on subsequent runs starting the webserver often fails because of a port conflict....

When ghcid is exited, it writes "Ghcid has stopped." to the log file. The VS Code extension tries to parse that as an error, but there is no file to...

I use ghcid with a multi-package project frequently; that means I'm starting and stopping ghcid sessions frequently. When ghcid stops, it writes "Ghcid has stopped" to the log file. The...

Hi! This PR is not meant to be merged. Instead, I'd like to open the discussion to find possible solutions to #257 Debugging the code, not fully looking at it,...

To reproduce: - run ghcid to run tests (e.g. `ghcid -c "cabal repl test" -T "import Main" -T ":main --color -f failed-examples"`) - have some test fail - press `C-c`...

## Description When running `ghci` and passing `--test something`, if you press ctrl+C quickly twice then a dangling `gch` process will remain. The `ghc` process consumes 100% of the CPU....

Hello and thank you for creating ghcid! I want to report an installation error on Windows. I may follow the directions to use MinGW, but I don't believe that should...

### Description Sometimes during a refactor I might accidentally introduce a module import that causes a circular/cyclical dependency. `ghcid` might then fail in one of two ways: - It crashes;...

This adds a command line option to replace the command marker "$>" with an alternative. Only single line commands like ```haskell -- $> not True ``` are affected. Mutliline commands...