ghcid-error-file.nvim
is a neovim
plugin for Haskell developers who use
ghcid or ghciwatch for their feedback compilation loop. It is able to parse
the error file produced by these tools and fill up the quickfix list with the
errors found.
Save your file, and hit :cf
to jump to the first error.
See below for an example of its use in a tmux
session:
Install the plugin with your favorite plugin manager. For nixos users, the
flake file contains an overlay that will add
ghcid-error-file-nvim
to the vimPlugins
attribute set.
To use the plugin, one must first configure the tool to produce the error file
on every ghci
reload. By default, neovim
will try to load a file named
errors.err
. Unless you have changed the errorfile
setting in neovim
, the
tool must be configured to produce an error file with that name.
Create a .ghcid
file at the root of your project with the following:
$ echo "-o errors.err" > .ghcid
Then run ghci
as usual. For a cabal project, for example:
$ ghcid -c "cabal repl"
ghciwatch
does not have a configuration file. The name of the error file must
be given on the command line. For example:
$ ghciwatch --error-file errors.err --watch ./ --command "cabal repl"
For single package project, that's all what's needed to work. Save your Haskell
file, the ghci
session is automatically reloaded by the tool of your choice,
hit :cf
and neovim
will jump on the first error.
For multi-package project, it is unfortunately not that simple. But the plugin makes it as easy as possible.
Indeed ghc
is not able to output the full
path of the files that
contain errors, neither absolute nor relatively to the root of the project (see
also that cabal issue). The
path of the files are only relative to the root of the package itself.
We must somehow tell neovim where the root of the package is. The plugin exposes two lua functions from the module ghcid-error-file to help with that:
cf(new_base_dir)
does what:cf
does but takes the root directory of the package as an optional argument.neovim
will prepend that directory to the files listed in the error file. The argument only needs to be given on the first call. Subsequent calls will reuse the previously set directory.cfResetBaseDir()
to reset the base directory to an empty string.
Here is a config example of how to use these functions:
vim.api.nvim_create_user_command(
'Cf',
function(opts)
require('ghcid-error-file').cf(opts.args)
end,
{
nargs = '?',
complete = 'file',
})
vim.api.nvim_create_user_command(
'CfResetBaseDir',
require('ghcid-error-file').cfResetBaseDir,
{}
)
Now if the package some-package
is located in the ./some-package
directory,
we can call ghci
with the following command:
$ ghcid -c "cabal repl lib:some-package"
Then from within neovim
, one can run :Cf ./some-package
to load the errors
the first time. After that, :Cf
can be called without any argument.
See the following example below:
- ghcid: The plugin present in the
ghcid
repository. It runsghcid
withinneovim
. I used to use it. It works fine as far as I remember. I started developing my plugin because I wanted a simpler approach when runningghcid
outside ofneovim
. - HLS: Haskell Language Server works fine with small projects. But in my experience, it is very unreliable, memory hungry and slow on big projects.