kadir çetinkaya

Results 81 comments of kadir çetinkaya

as described in #97 this is something we should address, but is really iffy as it would be a bunch of heuristics work. in the meantime, can you try passing...

I don't fully understand what the issue is. Could you elaborate on what you did, expected to see, and happened instead? Especially about how the existence of a compile_commands.json changes...

this has been brought up in the past and our conclusion was actually around making these clear at the build system layer, so that they are correctly reflected in the...

Hi @Trass3r, first of all thanks for giving this a try! > It's unclear how different kinds of cross-TU references like number of base classes and overrides can be distinguished...

> Basically you need a lightweight way to get number of refs for all interesting symbols in the whole file unfortunately, that's not a use case we can support with...

FYI, warnings for unused includes are currently available, controlled through `Diagnostics.UnusedIncludes` [config](https://clangd.llvm.org/config) option, and we plan to provide diagnostics for missing includes soon.

ah sorry I forgot that we don't have an entry in the config documentation yet. It should look like: ``` Diagnostics: UnusedIncludes: Strict ``` And you'll need a fresh build...

Clang already has a doxygen parser, you can get a parsed result from `RawComment::parse`. It is hard to consume the final parsed comment tree in a generic enough way to...

Copy/pasting the comment from review to here for having some high-level discussions. Thanks a lot @tom-anders for taking a look at this (and sorry for such a delayed response). ---...

> One idea here might be to add this when hovering over a local variable that got assigned to the result of a function call, e.g. That makes sense, but...