Nathan Ridge
Nathan Ridge
Thanks for implementing!
If you're only looking for clang-tidy diagnostics, a dedicated plugin for that like [this one](https://marketplace.visualstudio.com/items?itemName=CS128.cs128-clang-tidy) might be a better fit.
Ok, I see. We can probably consider adding feature toggles on a case-by-case basis. We recently had https://github.com/clangd/vscode-clangd/issues/588 filed about disabling auto-completion. Can you list other features you'd like to...
Technically it's probably doable. I'd be interested in learning more about the use case though. Why do you prefer the Microsoft extension's navigation or syntax highlighting to clangd's?
> Is there a setting to disable comment doc rendering? Are you looking for a way to get hovers to not display comments at all?
This is expected. A missing include is a fatal error, so the parser stops processing the rest of the file contents. You can see `clang` has the same behaviour on...
> If all non-existent header file references are supported to be underlined, what is the solution You could file an issue at https://github.com/llvm/llvm-project/issues/ asking for a clang command line option...
What is the meaning of these flags? Can they just be ignored for clangd's purposes? If so, you can instruct clangd to ignore it by creating a [config file](https://clangd.llvm.org/config.html) (`.clangd`)...
Have you tried removing the flags as suggested in [this comment](https://github.com/clangd/vscode-clangd/issues/458#issuecomment-1439393888)?
> you can instruct clangd to ignore it by creating a [config file](https://clangd.llvm.org/config.html) (`.clangd`) with: > ```yaml > CompileFlags: > Remove: [-ccbin=*,-rdc=*,-gencode] > ``` ^ This will only remove the...