Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore cargo messages like Blocking waiting for ... #500

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on May 17, 2023

  1. Ignore cargo messages like Blocking waiting for ...

    Whenever Cargo tries to build a project while there is another build in
    progress, Cargo will wait for the other build to finish, and print
    messages like this:
    
    ```
    Blocking waiting for file lock on package cache
    Blocking waiting for file lock on package cache
    Blocking waiting for file lock on build directory
    ```
    
    Those messages were not ignored, and were therefore included in the
    quickfix, making it look like there were some issues even if the build
    succeeded.
    
    This commit configures `&errorformat` to ignore those messages and avoid
    including them in the quickfix.
    
    Closes rust-lang#499 .
    dimonomid committed May 17, 2023
    Configuration menu
    Copy the full SHA
    b7a6ee3 View commit details
    Browse the repository at this point in the history