nvim-coverage icon indicating copy to clipboard operation
nvim-coverage copied to clipboard

Displays test coverage data in the sign column

Results 15 nvim-coverage issues
Sort by recently updated
recently updated
newest added

This makes impossible to filter other plugins from triggering inside the nvim-coverage buffer (like scrollbar, or guides) This is the window I mean: ![screenshot_2024-04-22_00-19-18_145755698](https://github.com/andythigpen/nvim-coverage/assets/3357792/14b8eb65-6877-4311-b624-ae4060699e18)

In case of a monorepo project (e.g. Python + Go) `go.mod` might be located somewhere in nested directories, but not in the project root. Usage of `Path:new('.')` won't work well...

The main goal is to add Cobertura support in C/C++ languages. Cobertura was supported for PHP only but the implementation was skipping elements of the XML (when entering children, it...

### Description First off, pretty damn nifty plugin. I Just started ramping up with NeoVim, and I try to create a "toggle" mapping for every plugin that contains its own...

I'd like a way to toggle the sort of the files in the test summary to be sorted by the file path. Also a tree view would be awesome

enhancement

Seems the default cov file generated by simplecov is `coverage/.resultset.json` Tried with https://github.com/vicentllongo/simplecov-json that generate nvim-coverage current ruby cov path, but I get a error when loading the file. I...

`vim-test` has some functionality that seemingly always sets up the correct project root: https://github.com/vim-test/vim-test/blob/6517577d8b75c97ce0a916f44942877beb37d72a/plugin/test.vim#L60 It would be great if there was some variable that one could use to tweak the...

enhancement

Hi there, llvm-cov can now be used as a coverage check method for rust. You can output an lcov format file with the command below. ` $ cargo llvm-cov --lcov...

Hi there, I'm seeing this error when `:Coverage` is run (in one repo, but it works fine in another repo). ``` Coverage E5108: Error executing lua Vim:E474: Invalid argument │stack...

This is something I pulled together in a couple hours. Only tested with a `jacocoTestReport.xml` file generated by the gradle plugin. Added some options to configure stuff. Uses https://lunarmodules.github.io/luaexpat/ to...