Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ColdMacaroni/nvim-coverage
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: andythigpen/nvim-coverage
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 20 commits
  • 8 files changed
  • 8 contributors

Commits on Mar 30, 2024

  1. feat: support nested go modules (monorepo)

    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 in that case, because it is actually
    a current working directory (cwd).
    
    Change to `Path:new(vim.fn.expand("%:p"))` adds nested modules support,
    since `go.mod` search will be started from the location of the current file
    (opened in the buffer)
    
    https://neovim.io/doc/user/builtin.html
    > %		current file name
    > :p		expand to full path
    troyanov committed Mar 30, 2024
    Configuration menu
    Copy the full SHA
    0026441 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. Configuration menu
    Copy the full SHA
    cdc2a51 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. Update README.md

    adding lazyvim usage
    zodman authored Aug 1, 2024
    Configuration menu
    Copy the full SHA
    bba3493 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2024

  1. Configuration menu
    Copy the full SHA
    fdca808 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2024

  1. Configuration menu
    Copy the full SHA
    ddee593 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    906fad0 View commit details
    Browse the repository at this point in the history
  3. feat: path compatibility

    rcasia committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    492c1a8 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2024

  1. [julia] Remove compile options from the default command

    This patch removes the compiler flags "--compile=min" and "-O0" from the
    default command. There have been lots of improvements on the Julia side
    since this command was first included (see PR andythigpen#2). The flags were
    included to reduce the latency by interpreting instead of compiling the
    code. In modern Julia versions (probably since 1.9 where native code
    caching was introduced) this is not a necessary strategy anymore, and,
    for this specific usecase, only causes the command to be a lot slower.
    
    Example timings for one of my packages:
    ```
    $ time julia --compile=min -O0 -e 'using CoverageTools; LCOV.writefile("lcov.info", process_folder("src"))'
    real    0m8,380s
    user    0m8,259s
    sys     0m0,178s
    
    $ time julia -e 'using CoverageTools; LCOV.writefile("lcov.info", process_folder("src"))'
    real    0m1,562s
    user    0m1,548s
    sys     0m0,080s
    ```
    fredrikekre committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    1b79180 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    36836d3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    13c98d6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7efb41d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fd04b15 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2024

  1. swift: Initial version

    remko committed Dec 6, 2024
    Configuration menu
    Copy the full SHA
    9c7dbad View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2024

  1. Merge pull request andythigpen#47 from troyanov/nested-gomod

    feat: support nested go modules (monorepo)
    andythigpen authored Dec 18, 2024
    Configuration menu
    Copy the full SHA
    e582e52 View commit details
    Browse the repository at this point in the history
  2. Merge pull request andythigpen#49 from Zeioth/filetype

    ✨feat(filetype): Coverage summary now set the filetype `coverage`.
    andythigpen authored Dec 18, 2024
    Configuration menu
    Copy the full SHA
    9b64056 View commit details
    Browse the repository at this point in the history
  3. Merge pull request andythigpen#55 from zodman/patch-1

    Update README.md with lazyvim instructions
    andythigpen authored Dec 18, 2024
    Configuration menu
    Copy the full SHA
    c8a7388 View commit details
    Browse the repository at this point in the history
  4. Merge pull request andythigpen#57 from jaingounchained/main

    Fixed typo in doc/nvim-coverage.txt
    andythigpen authored Dec 18, 2024
    Configuration menu
    Copy the full SHA
    18fa20c View commit details
    Browse the repository at this point in the history
  5. Merge pull request andythigpen#61 from fredrikekre/fe/julia

    Various improvements to Julia configuration
    andythigpen authored Dec 18, 2024
    Configuration menu
    Copy the full SHA
    ce50194 View commit details
    Browse the repository at this point in the history
  6. Merge pull request andythigpen#62 from remko/swift

    Add Swift support
    andythigpen authored Dec 18, 2024
    Configuration menu
    Copy the full SHA
    577d543 View commit details
    Browse the repository at this point in the history
  7. Merge pull request andythigpen#59 from rcasia/feature/java-coverage-j…

    …acoco
    
    feat: Add java jacoco coverage support
    andythigpen authored Dec 18, 2024
    Configuration menu
    Copy the full SHA
    a939e42 View commit details
    Browse the repository at this point in the history
Loading