11
Mine looks like this:

So it should be possible, at least for the parameters.
For reference, here's my active LSP config (from
:LspInfo):
- clangd (id: 3)
- Version: clangd version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261) linux+grpc x86_64-unknown-linux-gnu
- Root directory: ~/repos/traffic-generator
- Command: { "clangd", "--clang-tidy", "--enable-config", "--compile-commands-dir=build" }
- Settings: {}
- Attached buffers: 134
And my
.clangd:
***
Diagnostics:
UnusedIncludes: Strict
MissingIncludes: Strict
ClangTidy:
FastCheckFilter: None
Add:
- bugprone-*
- cert-*
- clang-analyzer-*
- clang-diagnostic-*
- concurrency-*
- misc-*
- modernize-*
- performance-*
- portability-*
- readability-*
Remove:
# - readability-redundant-member-init
- bugprone-easily-swappable-parameters
- readability-identifier-length
# - readability-function-cognitive-complexity
CompileFlags:
Add: [-xc]
Remove: [-fanalyzer]
Completion:
AllScopes: true
InlayHints:
Enabled: No
SemanticTokens:
DisabledKinds: []
DisabledModifiers: []
...
