BenYip
BenYip
#42 did not fix the problem. You will still get errors if you press ''(add items to quickfix)
According to [this](https://github.com/rust-lang/rust-analyzer/issues/7649#issuecomment-778131950), [rust-analyzer](https://github.com/rust-lang/rust-analyzer) unconditionally set `IsIncomplete` to true for faster autocomplete response. This results in omnicomplete always show a unfiltered list, which contains a lot of useless entries. It...
`nob_needs_rebuild` is not very convenient to use. I suggest this macro(copied from `nob_cmd_append`): ```C #define foo(output_path, ...) \ nob_needs_rebuild( \ output_path, ((const char *[]){__VA_ARGS__}), \ (sizeof((const char *[]){__VA_ARGS__}) / sizeof(const...